🚀 Update productIndex.blade.php table .main #33

pull/36/head
YasinDehfuli 3 months ago
parent 4bd55c9665
commit f67bb76fc0

@ -36,9 +36,9 @@
@csrf
<table class="table table-striped table-bordered ">
<thead class="thead-dark">
<tr>
<tr class="text-center">
<th>
<input type="checkbox" class="chkall"/>
#
</th>
<th>
{{__("Image")}}
@ -52,13 +52,15 @@
<th>
{{__("Action")}}
</th>
<th>
<input type="checkbox" class="chkall"/>
</th>
</tr>
</thead>
<tbody>
@foreach ($products as $n)
<tr>
<tr class="text-center">
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
{{$n->id}}
</td>
<td>
@ -96,7 +98,9 @@
{{__("Restore")}}
</a>
@endif
</td>
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
</td>
</tr>
@endforeach

Loading…
Cancel
Save