@extends('layouts.admin') @section('title', 'Footwear Categories') @section('content')

All Categories ({{ $categories->total() }})

Manage footwear styles and customer catalog filtering groupings.

+ Add Category
@forelse($categories as $cat) @empty @endforelse
Category Name URL Slug Products Count Status Actions
{{ $cat->name }} {{ Str::limit($cat->description, 50) }} /shop?category={{ $cat->slug }} {{ $cat->products_count }} Products {{ $cat->is_active ? 'Active' : 'Hidden' }} Edit
@csrf @method('DELETE')
No categories found.
{{ $categories->links() }}
@endsection