{{-- --}}
@lang('modules.order.orderNumber')# {{ $order->order_number }}
{{ restaurant()->name }}
{{ restaurant()->phone_number }}
{{ restaurant()->address }}
{{ $order->date_time->timezone(timezone())->format('d M, Y h:i A') }}
@foreach ($order->items as $item) @endforeach @foreach ($order->taxes as $item) @endforeach
# @lang('modules.menu.itemName') @lang('modules.order.qty') @lang('modules.order.price') @lang('modules.order.amount')
{{ $loop->iteration }} {{ $item->menuItem->item_name }} {!! (isset($item->menuItemVariation) ? '
(' . $item->menuItemVariation->variation . ')' : '') !!}
{{ $item->quantity }} {{ currency() . $item->price }} {{ currency() . $item->amount }}
@lang('modules.order.subTotal') {{ currency() }}{{ $order->sub_total }}
{{ $item->tax->tax_name }} ({{ $item->tax->tax_percent }}%) {{ currency() }}{{ (($item->tax->tax_percent / 100) * $order->sub_total ) }}
@lang('modules.order.total') {{ currency() }}{{ $order->total }}

@lang('messages.thankYouVisit')

{{-- --}}