| # |
Image |
Status |
Action |
@forelse ($brands as $key => $brand)
| {{ $key + 1 }} |
@if($brand->image)
@else
No image
@endif
|
@if ($brand->status == 'Active')
Active
@else
Inactive
@endif
|
|
@empty
|
No brands found.
|
@endforelse
@if(method_exists($brands, 'links'))
{{ $brands->links('pagination::bootstrap-4') }}
@endif