@extends('layouts.admin') @section('title','Recipe Categories') @section('content')
add Add Category

Recipe Categories

@forelse($recipes as $index => $recipe) {{-- ACTIONS --}} {{-- DELETE MODAL --}} @empty @endforelse
# Category Name Actions
{{ $index + 1 }} {{ $recipe->name }} edit
No categories found
@endsection