@extends('layouts.admin') @section('title','Ingredients') @section('content')
add Create Ingredient
{{-- Content --}}

Ingredients List


@if($ingredients->count())
@foreach($ingredients as $ingredient) {{-- ACTIONS --}} @endforeach
# Ingredient Name Recipe Categories Actions
{{ $ingredient->id }} {{ $ingredient->name }} @if($ingredient->recipe_categories->count()) @foreach($ingredient->recipe_categories as $category) {{ $category->name }} @endforeach @else @endif edit {{-- Delete Modal --}}
@else
No ingredients found

Start by creating your first ingredient.

@endif
@endsection