@lang('messages.orderPlacedSuccess')

@lang('modules.order.orderNumber') #{{ $order->order_number }} @if ($order->status == 'kot') @lang('modules.order.infokot') @endif

{{ $order->items->count() }} @lang('modules.menu.item') | {{ $order->date_time->timezone(timezone())->translatedFormat('M d, Y H:i A') }}
@php $maxPreparationTime = $order->items->max(function($item) { return $item->menuItem->preparation_time; }); @endphp @if ($maxPreparationTime)
@lang('modules.menu.preparationTime') : {{ $maxPreparationTime }} @lang('modules.menu.minutes') (@lang('app.approx'))
@endif
{{ $restaurant->currency->currency_symbol . $order->total }}
@lang('modules.order.includeTax')
@foreach ($order->items as $key => $item) @endforeach
@lang('modules.order.subTotal')
{{ $restaurant->currency->currency_symbol }}{{ $order->sub_total }}
@foreach ($order->taxes as $item)
{{ $item->tax->tax_name }} ({{ $item->tax->tax_percent }}%)
{{ $restaurant->currency->currency_symbol }}{{ (($item->tax->tax_percent / 100) * $order->sub_total ) }}
@endforeach
@lang('modules.order.total')
{{ $restaurant->currency->currency_symbol }}{{ $order->total }}
@lang('modules.order.newOrder')