migrate to gtea from bistbucket
This commit is contained in:
@@ -0,0 +1,119 @@
|
||||
<div class="responsive-table mt-2">
|
||||
<table class="table" id="datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="w-60">
|
||||
<div class="d-flex align-items-center gap-3">
|
||||
<input type="checkbox" class="select-all-delete multi-delete">
|
||||
</div>
|
||||
</th>
|
||||
<th>{{__('SL')}}</th>
|
||||
<th>{{__('Flag')}}</th>
|
||||
<th>{{__('Name')}}</th>
|
||||
<th>{{__('Locale')}}</th>
|
||||
<th>{{__('Is Active')}}</th>
|
||||
<th>{{__('Is Default')}}</th>
|
||||
<th>{{__('Action')}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
<!-- Row 1 -->
|
||||
<tr>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="delete-checkbox-item multi-delete">
|
||||
</td>
|
||||
<td>1</td>
|
||||
<td><img src="assets/images/flags/us.png" class="table-product-img" alt=""></td>
|
||||
<td>{{__('English') }}</td>
|
||||
<td>{{__('en') }}</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="multi-delete">
|
||||
</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="multi-delete">
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropdown table-action">
|
||||
<button type="button" data-bs-toggle="dropdown">
|
||||
<i class="far fa-ellipsis-v"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
{{-- <li><a href="#"><i class="fal fa-eye"></i> View</a></li> --}}
|
||||
<li><a href="#"><i class="fal fa-edit"></i> {{__('Edit')}}</a></li>
|
||||
<li><a href="#" class="confirm-action" data-method="DELETE">
|
||||
<i class="fal fa-trash-alt"></i> {{__('Delete') }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Row 2 -->
|
||||
<tr>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="delete-checkbox-item multi-delete">
|
||||
</td>
|
||||
<td>{{__('2') }}</td>
|
||||
<td><img src="assets/images/flags/bd.png" class="table-product-img" alt=""></td>
|
||||
<td>{{__('Bengali') }}</td>
|
||||
<td>{{__('bn') }}</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="multi-delete">
|
||||
</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class=" multi-delete">
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropdown table-action">
|
||||
<button type="button" data-bs-toggle="dropdown">
|
||||
<i class="far fa-ellipsis-v"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
{{-- <li><a href="#"><i class="fal fa-eye"></i> View</a></li> --}}
|
||||
<li><a href="#"><i class="fal fa-edit"></i> {{__('Edit')}}</a></li>
|
||||
<li><a href="#" class="confirm-action" data-method="DELETE">
|
||||
<i class="fal fa-trash-alt"></i> {{__('Delete')}}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Row 3 -->
|
||||
<tr>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="delete-checkbox-item multi-delete">
|
||||
</td>
|
||||
<td>{{__('3') }}</td>
|
||||
<td><img src="assets/images/flags/fr.png" class="table-product-img" alt=""></td>
|
||||
<td>{{__('French')}}</td>
|
||||
<td>{{__('fr') }}</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="multi-delete">
|
||||
</td>
|
||||
<td class="w-60 checkbox">
|
||||
<input type="checkbox" class="multi-delete">
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropdown table-action">
|
||||
<button type="button" data-bs-toggle="dropdown">
|
||||
<i class="far fa-ellipsis-v"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
{{-- <li><a href="#"><i class="fal fa-eye"></i> View</a></li> --}}
|
||||
<li><a href="#"><i class="fal fa-edit"></i> {{__('Edit') }}</a></li>
|
||||
<li><a href="#" class="confirm-action" data-method="DELETE">
|
||||
<i class="fal fa-trash-alt"></i> {{__('Delete') }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
{{-- <div class="mt-3">
|
||||
{{ $parties->links('vendor.pagination.bootstrap-5') }}
|
||||
</div> --}}
|
||||
Reference in New Issue
Block a user