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