{{ __('kiosk::modules.menu.title') }}

@if ($kioskAds->count() > 0)
@foreach ($kioskAds as $ad)
{{ $ad->heading }}

{{ $ad->heading }}

{{ $ad->description }}

@endforeach
@foreach ($kioskAds as $ad) @endforeach
@endif
@foreach ($categoryList as $category) @endforeach
@foreach ($menuItems as $item)
{{ $item->item_name }}

{{ $item->getTranslatedValue('item_name', session('locale')) }}

{{ currency_format($item->price, $restaurant->currency_id) }}

{{ $item->getTranslatedValue('description', session('locale')) }}

@endforeach

{{ __('kiosk::modules.menu.your_order') }}

@foreach ($cartItemList['items'] as $item)

{{ $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'] }} {{ currency_format($modifier['price'], $restaurant->currency_id) }}
@endforeach
@endif
@if($taxMode === 'item' && !empty($item['tax_amount']) && $item['tax_amount'] > 0)

{{ currency_format($item['display_price'], $restaurant->currency_id) }}

@if(!empty($item['tax_breakup']) && count($item['tax_breakup']) > 0)
@foreach($item['tax_breakup'] as $taxName => $taxInfo) {{ $taxName }}: {{ currency_format($taxInfo['amount'], $restaurant->currency_id) }} @if(!$loop->last) | @endif @endforeach
@endif @else

{{ currency_format($item['price'], $restaurant->currency_id) }}

@endif
{{ $item['quantity'] }}
@endforeach
{{ __('kiosk::modules.menu.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.menu.tax') }} {{ currency_format($totalTaxAmount, $restaurant->currency_id) }}
@endif @endif @endif
{{ __('kiosk::modules.menu.total') }} {{ currency_format($total, $restaurant->currency_id) }}