Order Placed!
Your order has been received and is being processed.
{{ $order->order_number }}
{{ strtoupper(substr($order->restaurant->name, 0, 1)) }}
{{ $order->restaurant->name }}
@if($order->table)
🪑 {{ $order->table->table_name }}
@endif
@foreach($order->items as $item)
{{ $item->item_name }}
@if($item->special_instruction)
{{ $item->special_instruction }}
@endif
×{{ $item->quantity }}
₹{{ number_format($item->total_price) }}
@endforeach
Subtotal₹{{ number_format($order->subtotal) }}
@if($order->tax_amount > 0)
Tax₹{{ number_format($order->tax_amount) }}
@endif
@if($order->service_charge > 0)
Service Charge₹{{ number_format($order->service_charge) }}
@endif
@if($order->special_instruction)
Special Instructions
{{ $order->special_instruction }}
@endif