Restaurant Name

Branch Address

Contact Info

Date: {{ now()->format('d, M Y h:i A') }}

Order Number: {{ $order->order_number }}

Delivery Address: {{ $order->address->address }}

Customer Name: {{ $order->client->name }}

Contact: {{ $order->client->phone }}

Delivery Name: [Delivery Person's Name]

Order Details

@foreach ($order->orderDetails as $detail) @endforeach
Item Qty Price Total
{{ $detail->dish->name_ar }} {{ $detail->quantity }} ${{ $detail->price_befor_tax }} ${{ $detail->total }}

Subtotal: ${{ $order->total_price_befor_tax }}

Discounts: ${{ $order->discount }}

Tax: ${{ $order->tax_value }}

Delivery Fee: ${{ $order->fees }}

Total: ${{ $order->total_price_after_tax }}

Thank you for your order!

{!! QrCode::size(100)->generate(route('order.change.status', $order->id)) !!}