@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) }}
@endforeach
|
|
@php
$itemPrice = isset($orderItemVariation[$key]) ? $orderItemVariation[$key]->price : $item->price;
@endphp
{{ currency_format(($orderItemQty[$key] * ($itemPrice + (isset($orderItemModifiersPrice[$key]) ? $orderItemModifiersPrice[$key] : 0)) )) }} | ||
@lang('messages.noItemAdded')
|