@include('Commonheader', ['page_title' => 'Past Material Requests'])
@include('sidebar')
@include('restaurant.navbar')

Past Material Requests

@if ($requests->isNotEmpty()) @foreach ($requests as $index => $req) @endforeach
# Request Date Chef ID Item Name Quantity Unit Status Remarks Created At
{{ $index + 1 }} {{ $req->request_date }} {{ $req->chef_id }} {{ $req->item_name }} {{ $req->quantity_requested }} {{ $req->unit }} {{ ucfirst($req->status) }} {{ $req->remarks }} {{ $req->created_at }}
@else
No past material requests found.
@endif
@include('Commonfooter')
@include('Commonscript')