@lang('modules.order.totalItem')
{{ count($orderItemList) }}
@lang('modules.order.subTotal')
{{ currency() }}{{ $subTotal }}
@foreach ($taxes as $item)
{{ $item->tax_name }} ({{ $item->tax_percent }}%)
{{ currency() }}{{ (($item->tax_percent / 100) * $subTotal) }}
@endforeach
@lang('modules.order.total')
{{ currency() }}{{ $total }}
@if (is_null($customer) && ($restaurant->customer_login_required || $orderType == 'delivery'))
@lang('app.next')
@else
@if ($paymentGateway->stripe_status || $paymentGateway->razorpay_status)
@lang('modules.order.payNow')
@lang('modules.order.payLater')
@else
@lang('modules.order.placeOrder')
@endif
@endif