@extends('layouts.app') @section('title', 'Manajemen Kategori') @section('page_title', 'Kategori Barang') @section('page_subtitle', 'Kelola kategori barang untuk memudahkan pengelompokan inventaris.') @section('content')

Daftar Kategori

@if($categories->isEmpty())
Belum ada kategori. Silakan tambahkan kategori baru di sebelah kanan.
@else
@foreach($categories as $category) @endforeach
ID Nama Kategori Deskripsi Jumlah Barang Aksi
#{{ $category->id }} {{ $category->name }} {{ $category->description ?? '-' }} {{ $category->items_count }}
@csrf @method('DELETE')
@endif

Tambah Kategori

@csrf
@error('name') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@endsection @section('scripts') @endsection