Skip to content

Commit

Permalink
🚀 Update langIndex.blade.php update table ui .main 4xmen#33
Browse files Browse the repository at this point in the history
  • Loading branch information
YasinDehfuli committed Feb 6, 2024
1 parent 97023c7 commit 9e683fa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions resources/views/admin/langs/langIndex.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
<thead class="thead-dark">
<tr>
<th>
<input type="checkbox" class="chkall"/>
#
</th>
<th>

{{__("Name")}}
</th>
<th>
Expand All @@ -29,13 +28,15 @@
{{__("Action")}}

</th>
<th>
<input type="checkbox" class="chkall"/>
</th>
</tr>
</thead>
<tbody>
@foreach ($langs as $n)
<tr>
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
{{$n->id}}
</td>
<td>
Expand All @@ -62,6 +63,9 @@ class="btn btn-danger delete-confirm btn-sm">
<i class="ri-close-line"></i>
</a>
</td>
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
</td>
</tr>
@endforeach
</tbody>
Expand Down

0 comments on commit 9e683fa

Please sign in to comment.