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

Inventory List

Add Inventory
@if(session('success'))
{{ session('success') }}
@endif @if ($items->isNotEmpty())
@foreach ($items as $index => $item) @endforeach
# Item Name Quantity Unit Added On Actions
{{ $index + 1 }} {{ $item->item_name }} {{ $item->quantity }} {{ $item->unit }} {{ $item->added_on }}
@else
No inventory items found.
@endif
@include('Commonfooter')
@include('Commonscript')