@lang('modules.menu.itemName') | @lang('modules.order.qty') | @lang('modules.order.amount') | @if (!in_array($order->status, ['paid', 'payment_due', 'canceled']) && user_can('Delete Order'))@lang('app.action') | @endif|
---|---|---|---|---|
{{ $item->menuItem ? $item->menuItem->item_name : '--' }}
{{ isset($item->menuItemVariation) ? $item->menuItemVariation->variation : '' }}
@if ($item->modifierOptions->isNotEmpty())
@foreach ($item->modifierOptions as $modifier)
@endif
{{ $modifier->name }}
{{ currency_format($modifier->price) }}
@endforeach
|
{{ $item->quantity }} | {{ currency_format($item->amount) }} | @if (!in_array($order->status, ['paid', 'payment_due', 'canceled']) && user_can('Delete Order'))@endif | |
@lang('messages.noItemAdded') |
@lang('modules.order.amount') | @lang('modules.order.paymentMethod') | @lang('app.dateTime') |
---|---|---|
{{ currency_format($item->amount) }} |
@if($order->status !== 'pending_verification' && user_can('Update Order'))
$item->payment_method == 'due',
'bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-400 border border-gray-400' => $item->payment_method != 'due',
])>
@php
$icons = [
'cash' => '',
'upi' => '',
'card' => ''
];
@endphp
{!! $icons[$item->payment_method] ?? '' !!}
@lang('modules.order.' . $item->payment_method)
@endif
|
@if ($item->payment_method == 'due' && user_can('Update Order'))
|