@lang('messages.orderPlacedSuccess')

@lang('modules.order.orderNumber') #{{ $order->order_number }}

{{ $order->items->count() }} @lang('modules.menu.item') | {{ $order->date_time->timezone(timezone())->format('M d, Y H:i A') }}
{{ currency() . $order->total }}
@lang('modules.order.includeTax')
@foreach ($order->items as $key => $item) @endforeach
@lang('modules.order.subTotal')
{{ currency() }}{{ $order->sub_total }}
@foreach ($order->taxes as $item)
{{ $item->tax->tax_name }} ({{ $item->tax->tax_percent }}%)
{{ currency() }}{{ (($item->tax->tax_percent / 100) * $order->sub_total ) }}
@endforeach
@lang('modules.order.total')
{{ currency() }}{{ $order->total }}