@include('Commonheader', ['page_title' => 'Ingredient List'])
@include('sidebar')
@include('restaurant.navbar')
Ingredient List
Add Ingredient
@if (session('success'))
{{ session('success') }}
@endif
#
Ingredient Name
Unit
Actions
@foreach ($ingredients as $index => $row)
{{ $index + 1 }}
{{ $row->name }}
{{ $row->unit }}
Edit
Delete
@endforeach
@include('Commonfooter')
@include('Commonscript')