🚀 Update tables improve ui .main #33

pull/36/head
YasinDehfuli 3 months ago
parent f67bb76fc0
commit 0b01722f3a

@ -9,11 +9,11 @@
@include('starter-kit::component.err')
<form action="{{route('admin.cat.bulk')}}" method="post" class="bulk-action" >
@csrf
<table class="table table-striped table-bordered ">
<table class="table table-striped table-bordered text-center">
<thead class="thead-dark">
<tr>
<th>
<input type="checkbox" class="chkall"/>
#
</th>
<th>
{{__("Image")}}
@ -27,13 +27,15 @@
<th>
{{__("Action")}}
</th>
<th>
<input type="checkbox" class="chkall"/>
</th>
</tr>
</thead>
<tbody>
@foreach ($cats as $cat)
<tr>
<td>
<input type="checkbox" name="id[]" value="{{$cat->id}}" class="m-2 chkbox"/>
{{$cat->id}}
</td>
<td>
@ -60,6 +62,9 @@
</a>
@endif
</td>
<td>
<input type="checkbox" name="id[]" value="{{$cat->id}}" class="m-2 chkbox"/>
</td>
</tr>
@endforeach
</tbody>

@ -34,9 +34,9 @@
</div>
<form action="{{route('admin.product.bulk')}}" method="post" class="bulk-action">
@csrf
<table class="table table-striped table-bordered ">
<table class="table table-striped table-bordered text-center">
<thead class="thead-dark">
<tr class="text-center">
<tr>
<th>
#
</th>
@ -59,7 +59,7 @@
</thead>
<tbody>
@foreach ($products as $n)
<tr class="text-center">
<tr>
<td>
{{$n->id}}
</td>

Loading…
Cancel
Save