{{ __('kiosk::modules.cart.order_summary') }}

{{ __('kiosk::modules.cart.order_summary_help') }}

{{ __('kiosk::modules.cart.your_order') }} ({{ $cartCount }} {{ __('kiosk::modules.cart.items_suffix') }})

@forelse ($cartItemList['items'] as $item)
{{ $item['menu_item']['name'] }}

{{ $item['menu_item']['name'] }}

@if(!empty($item['variation'])) {{ $item['variation']['name'] }} • @endif @if(!empty($item['modifiers']) && count($item['modifiers']) > 0) @foreach($item['modifiers'] as $modifier) {{ $modifier['name'] }}@if(!$loop->last), @endif @endforeach • @endif
@if($taxMode === 'item' && !empty($item['tax_amount']) && $item['tax_amount'] > 0)
{{ __('kiosk::modules.cart.base') }}: {{ currency_format($item['display_price'], $restaurant->currency_id) }} @if(!empty($item['tax_breakup'])) | {{ __('kiosk::modules.cart.tax') }}: @foreach($item['tax_breakup'] as $taxName => $taxInfo) {{ $taxName }} {{ currency_format($taxInfo['amount'], $restaurant->currency_id) }}@if(!$loop->last), @endif @endforeach @endif
@endif
{{ currency_format($item['amount'], $restaurant->currency_id) }}
{{ __('kiosk::modules.cart.qty') }}: {{ $item['quantity'] }}
@empty

{{ __('kiosk::modules.cart.empty') }}

{{ __('kiosk::modules.cart.empty_cta') }}

@endforelse
{{ __('kiosk::modules.cart.subtotal') }} {{ currency_format($subtotal, $restaurant->currency_id) }}
@if($totalTaxAmount > 0) @if($taxMode === 'order' && !empty($taxBreakdown)) @foreach($taxBreakdown as $taxName => $taxInfo)
{{ $taxName }} ({{ number_format($taxInfo['percent'], 2) }}%) {{ currency_format($taxInfo['amount'], $restaurant->currency_id) }}
@endforeach @else @if(!empty($taxBreakdown)) @foreach($taxBreakdown as $taxName => $taxInfo)
{{ $taxName }} ({{ number_format($taxInfo['percent'], 2) }}%) {{ currency_format($taxInfo['amount'], $restaurant->currency_id) }}
@endforeach @else
{{ __('kiosk::modules.cart.tax') }} {{ currency_format($totalTaxAmount, $restaurant->currency_id) }}
@endif @endif @endif
{{ __('kiosk::modules.cart.total') }} {{ currency_format($total, $restaurant->currency_id) }}

{{ __('kiosk::modules.cart.customer_info') }}

@if($requireName)
@error('customerName') {{ $message }} @enderror
@endif @if($requireEmail)
@error('customerEmail') {{ $message }} @enderror
@endif @if($requirePhone)
@error('customerPhone') {{ $message }} @enderror
@endif @if($orderType === 'pickup')
@endif