changes
This commit is contained in:
@ -22,28 +22,23 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>S.N</th>
|
||||
<th>Name</th>
|
||||
<th>Price</th>
|
||||
<th>Quantity</th>
|
||||
<th>Category</th>
|
||||
<th>Sub Category</th>
|
||||
<th>Supplier</th>
|
||||
<th>Warehouse</th>
|
||||
<th>Title</th>
|
||||
<th>Fabric Category</th>
|
||||
<th>Product Category</th>
|
||||
<th>Product Code</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@forelse ($products as $key => $product)
|
||||
{{-- @dd($product->fabricCategory) --}}
|
||||
<tr>
|
||||
<td>{{ $key + 1 }}</td>
|
||||
<td>{{ $product->name }}</td>
|
||||
<td>{{ $product->price }}</td>
|
||||
<td>{{ $product->qty }}</td>
|
||||
<td>{{ optional($product->fabricCategory)->title }}</td>
|
||||
<td>{{ optional($product->category)->title }}</td>
|
||||
<td>{{ optional($product->subCategory)->title }}</td>
|
||||
<td>{{ optional($product->supplier)->supplier_name }}</td>
|
||||
<td>{{ optional($product->warehouse)->title }}</td>
|
||||
<td>{{ $product->code }}</td>
|
||||
<td>{!! $product->status_name !!}</td>
|
||||
<td>
|
||||
<div class="hstack flex-wrap gap-3">
|
||||
|
Reference in New Issue
Block a user