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

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

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

Loading…
Cancel
Save