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

Restaurant Orders

Add New Order
@if (session('success')) @endif
@foreach($orders as $order) @endforeach
# Guest Table Source Total Guests Total Amount (₹) Status Actions
{{ $loop->iteration }} {{ $order->guest_name }} {{ $order->table_number ?? 'N/A' }} {{ ucfirst($order->order_source) }} {{ $order->total_guests }} ₹{{ number_format($order->total_amount, 2) }} {{ ucfirst($order->order_status) }}
@include('Commonfooter')
@include('Commonscript')