@extends('layouts.app') @section('title', 'Kategori') @section('page-title', 'Manajemen Kategori') @section('content')
{{-- Form Tambah --}}

➕ Tambah Kategori

@csrf
Warna label kategori
{{-- List --}}

Daftar Kategori ({{ $categories->total() }})

@forelse($categories as $cat)
{{ $cat->icon ?? '📦' }}
{{ $cat->name }} {{ $cat->products_count }} produk @if(!$cat->is_active) Nonaktif @endif
Urutan: {{ $cat->sort_order }}
@csrf @method('DELETE')
@empty
Belum ada kategori
@endforelse
{{ $categories->links() }}
{{-- Modal Edit --}} @push('scripts') @endpush @endsection