@lang('modules.order.subTotal')
{{ currency_format($subTotal, restaurant()->currency_id) }}
@if($discount > 0)
@lang('modules.order.discount')
-{{ currency_format($discount, restaurant()->currency_id) }}
@endif
@if(count($orderItems) > 0 && !empty($taxes))
@foreach($taxes as $tax)
@if(isset($tax['amount']) && (float) $tax['amount'] > 0)
@lang('modules.order.tax'): {{ $tax['name'] }} ({{ $tax['percent'] }}%)
+{{ currency_format($tax['amount'], restaurant()->currency_id) }}
@endif
@endforeach
@endif
@if(count($orderItems) > 0 && !empty($extraCharges))
@foreach($extraCharges as $charge)
@if(isset($charge['amount']) && (float) $charge['amount'] > 0)
@lang('modules.order.charge'): {{ $charge['name'] }}
+{{ currency_format($charge['amount'], restaurant()->currency_id) }}
@endif
@endforeach
@endif
@if($tip > 0)
@lang('modules.order.tip')
+{{ currency_format($tip, restaurant()->currency_id) }}
@endif
@if($deliveryFee > 0)
@lang('modules.order.deliveryFee')
+{{ currency_format($deliveryFee, restaurant()->currency_id) }}
@endif
@lang('modules.order.total')
{{ currency_format($total, restaurant()->currency_id) }}
@lang('modules.order.thankYouMessage', ['restaurant' => restaurant()->name])
@lang('modules.order.pleaseReviewOrder')