@lang('modules.menu.itemName') | @lang('modules.order.qty') | @lang('modules.order.amount') | @lang('app.action') | |
---|---|---|---|---|
{{ $item->item_name }}
{{ (isset($orderItemVariation[$key]) ? $orderItemVariation[$key]->variation : '') }}
@if (!empty($itemModifiersSelected[$key]))
@foreach ($itemModifiersSelected[$key] as $modifierOptionId)
@endif
{{ $this->modifierOptions[$modifierOptionId]->name }}
{{
currency_format($this->modifierOptions[$modifierOptionId]->price, restaurant()->currency_id) }}
@endforeach
|
|
@php
$displayPrice = $this->getItemDisplayPrice($key);
$totalAmount = $orderItemAmount[$key];
@endphp
{{ currency_format($totalAmount, restaurant()->currency_id) }} | ||
@lang('messages.noItemAdded')
|