| ID |
Name |
Parent Category |
Description |
Status |
Actions |
@forelse($categories as $category)
| {{ $category->id }} |
{{ $category->name }} |
@if($category->parent)
{{ $category->parent->name }}
@else
Main Category
@endif
|
{{ Str::limit($category->description, 50) ?? 'N/A' }} |
@if($category->status == 1)
Active
@else
Inactive
@endif
|
|
@empty
| No categories found |
@endforelse
{{ $categories->links() }}