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

Material Request Plans

Today's Plan ({{ \Carbon\Carbon::now()->format('d M Y') }})
@if (!empty($daily)) @foreach ($daily as $index => $item) @endforeach
# Chef ID Item Qty Unit Status Remarks Created At
{{ $index + 1 }} {{ $item->chef_id }} {{ $item->item_name }} {{ $item->quantity_requested }} {{ $item->unit }} {{ ucfirst($item->status) }} {{ $item->remarks }} {{ $item->created_at }}
@else
No material requests found for today.
@endif
This Week's Plan ({{ \Carbon\Carbon::parse('monday this week')->format('d M') }} - {{ \Carbon\Carbon::parse('sunday this week')->format('d M Y') }})
@if (!empty($weekly)) @foreach ($weekly as $index => $item) @endforeach
# Request Date Chef ID Item Qty Unit Status Remarks Created At
{{ $index + 1 }} {{ $item->request_date }} {{ $item->chef_id }} {{ $item->item_name }} {{ $item->quantity_requested }} {{ $item->unit }} {{ ucfirst($item->status) }} {{ $item->remarks }} {{ $item->created_at }}
@else
No material requests found for this week.
@endif
@include('Commonfooter')
@include('Commonscript')