🚀 Update langIndex.blade.php update table ui .main #33

pull/36/head
YasinDehfuli 9 months ago
parent 97023c7431
commit 9e683fa5c2

@ -13,10 +13,9 @@
<thead class="thead-dark"> <thead class="thead-dark">
<tr> <tr>
<th> <th>
<input type="checkbox" class="chkall"/> #
</th> </th>
<th> <th>
{{__("Name")}} {{__("Name")}}
</th> </th>
<th> <th>
@ -29,13 +28,15 @@
{{__("Action")}} {{__("Action")}}
</th> </th>
<th>
<input type="checkbox" class="chkall"/>
</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach ($langs as $n) @foreach ($langs as $n)
<tr> <tr>
<td> <td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
{{$n->id}} {{$n->id}}
</td> </td>
<td> <td>
@ -62,6 +63,9 @@
<i class="ri-close-line"></i> <i class="ri-close-line"></i>
</a> </a>
</td> </td>
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>

Loading…
Cancel
Save