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

Kitchen Inventory Stock

Add Stock
@if (session('success')) @endif @if (!empty($stocks) && is_iterable($stocks))
@foreach ($stocks as $stock) @endforeach
Item Name Quantity Received Unit Received Date Remarks Actions
{{ $stock->item_name }} {{ $stock->quantity_received }} {{ $stock->unit }} {{ $stock->received_date }} {{ $stock->remarks }}
@else
No stock entries found.
@endif
@include('Commonfooter')
@include('Commonscript')