@extends('layouts.app') @section('title', 'Kelola Kategori') @section('content')

Kelola Kategori

Tambah Kategori
@csrf
@error('name')
{{ $message }}
@enderror
Daftar Kategori
@if($categories->count() > 0)
@foreach($categories as $index => $category) @endforeach
No Nama Deskripsi Jumlah Menu Aksi
{{ $index + 1 }} {{ $category->name }} {{ $category->description ?? '-' }} {{ $category->menus_count }}
@else

Belum ada kategori

@endif
@endsection