@extends('layouts.app') @section('title', 'Kategori') @section('page-title', 'Kategori Barang') @section('content')
Daftar Kategori Tambah Kategori
@forelse($categories as $c) @empty @endforelse
KodeNamaDeskripsiJumlah BarangAksi
{{ $c->code }} {{ $c->name }} {{ $c->description ?: '-' }} {{ $c->items_count }} @if(auth()->user()->isSuperadmin())
@csrf @method('DELETE')
@endif
Belum ada kategori.
{{ $categories->links() }}
@endsection