{{ trans('order.Restaurant Name') }}

{{ trans('order.Branch Address') }}: {{ $order->branch->country->address }}

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

{{ trans('order.Order Number') }}: {{ $order->order_number }}

{{ trans('order.Table Number') }}: {{ $order->table_number ?? 'N/A' }}

{{ trans('order.Order Details') }}

@foreach ($order->orderDetails as $detail) @endforeach @foreach ($order['addons'] as $addon) @endforeach
{{ trans('order.Item') }} {{ trans('order.Qty') }} {{ trans('order.Price') }} {{ trans('order.Total') }}
{{ $detail->dish->name_ar }} {{ $detail->quantity }} {{ $order->branch->country->currency_symbol }}{{ $detail->price_befor_tax }} {{ $order->branch->country->currency_symbol }}{{ $detail->total }}
{{ $addon->Addon->addons->name_ar . ' | ' . $addon->Addon->addons->name_en }} {{ $addon->quantity }} {{ $order->branch->country->currency_symbol }}{{ $addon->price_before_tax }} {{ $order->branch->country->currency_symbol }} {{ $addon->price_after_tax }}

{{ trans('order.Subtotal') }}: {{ $order->branch->country->currency_symbol }}{{ $order->total_price_befor_tax }}

{{ trans('order.Discounts') }}: {{ $order->branch->country->currency_symbol }}{{ $order->discount }}

{{ trans('order.Tax') }}: {{ $order->branch->country->currency_symbol }}{{ $order->tax_value }}

{{ trans('order.Total') }}: {{ $order->branch->country->currency_symbol }}{{ $order->total_price_after_tax }}

{{ trans('order.ThankOrder') }}

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