Categories Management

Add, edit, or remove product categories.

Create Category
@if(request()->hasAny(['search', 'type', 'parent_id', 'sort_by'])) Reset @endif
@if($categories->isEmpty())
No categories found. Click the button above to add one.
@else @foreach($categories as $category)
{{ $category->name }}
{{ $category->name }} @if($category->parent) Sub @else Main @endif
@if($category->parent) Parent: {{ $category->parent->name }} @endif {{ $category->slug }} @if($category->description) {{ $category->description }} @endif
Edit
@csrf @method('DELETE')
@endforeach
{{ $categories->links() }}
@endif