Category Management

Manage product categories for the catalogue.

Selected: 0
All ({{ $categories->total() }}) Active ({{ $activeCount ?? 0 }}) Inactive ({{ $inactiveCount ?? 0 }})
@forelse($categories as $category) @empty @endforelse
Category Description Created At Status Actions
{{ $category->name }} {{ Str::limit($category->description, 60) }} {{ $category->created_at->format('M d, Y h:i A') }}
@csrf @method('PATCH') {{ $category->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')

No categories found.

@if($categories->hasPages())
@include('partials.pagination', ['paginator' => $categories])
@endif
@push('scripts') @endpush