@include('Commonheader', ['page_title' => 'Ingredient List'])
@include('sidebar')
@include('restaurant.navbar')

Ingredient List

Add Ingredient
@if (session('success')) @endif
@foreach ($ingredients as $index => $row) @endforeach
# Ingredient Name Unit Actions
{{ $index + 1 }} {{ $row->name }} {{ $row->unit }}
@include('Commonfooter')
@include('Commonscript')