| # | @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')