{{ restaurant()->name }}
{{ restaurant()->address }}
@lang('modules.customer.phone'): {{ restaurant()->phone_number }}
@lang('modules.order.orderNumber') #{{ $order->order_number }} {{ $order->date_time->timezone(timezone())->translatedFormat('d M Y H:i') }}
@if($order->table_id)
@lang('modules.table.table'): {{ $order->table->table_code }}
@endif
@foreach ($order->items as $item) @endforeach
@lang('modules.order.qty') @lang('modules.menu.itemName') @lang('modules.order.price') @lang('modules.order.amount')
{{ $item->quantity }} {{ $item->menuItem->item_name }} @if(isset($item->menuItemVariation))
({{ $item->menuItemVariation->variation }}) @endif
{{ currency() }}{{ number_format($item->price, 2) }} {{ currency() }}{{ number_format($item->amount, 2) }}
@lang('modules.order.subTotal'): {{ currency() }}{{ number_format($order->sub_total, 2) }}
@foreach ($order->taxes as $item)
{{ $item->tax->tax_name }} ({{ $item->tax->tax_percent }}%): {{ currency() }}{{ number_format(($item->tax->tax_percent / 100) * $order->sub_total, 2) }}
@endforeach
@lang('modules.order.total'): {{ currency() }}{{ number_format($order->total, 2) }}