| # |
Name |
Status |
Image |
Actions |
@forelse ($products as $key => $product)
| {{ $key + 1 }} |
{{ $product->name }} |
{{ ucfirst($product->status) }}
|
@if(!empty($product->image))
@else
No image
@endif
|
|
@empty
|
No master products found.
|
@endforelse
@if(method_exists($products, 'links'))
{{ $products->links('pagination::bootstrap-4') }}
@endif