@extends('layouts.app') @section('title', 'Ingredient Categories') @section('actions') New Category @endsection @section('content')
@forelse($categories as $category) @empty @endforelse
NameIngredientsNotes
{{ $category->name }} {{ $category->ingredients_count }} {{ $category->notes ?? '—' }}
@csrf @method('DELETE')
No categories yet.
{{ $categories->links() }}
@endsection