@php $pageTitle = __('Edit Order') . ' #'; if ($selectedModel != null) { $pageTitle .= $selectedModel->code; } $pageTitle .= ' '; $pageTitle .= __('Items'); @endphp @section('title', $pageTitle)
{{ __('Order Code') }}
#{{ $selectedModel->code }}
{{ __('Status') }}
{{ ucfirst(__($selectedModel->status)) }}
{{ __('Payment Status') }}
{{ ucfirst(__($selectedModel->payment_status)) }}
| {{ __('S/N') }} | {{ __('Name') }} | {{ __('Options') }} | {{ __('Price') }} | {{ __('QTY') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $key + 1 }} |
{{ $product->name }} {{ __("Brand") }}: {{ $product->brand->name ?? 'N/A' }} |
@foreach ($product->option_groups as $option_group)
{{ $option_group->name }}
@foreach ($option_group->options as $option)
@php
if ($option_group->multiple) {
$optionId =
'editProductOptions.' .
$product->id .
'.' .
$option_group->id .
'.' .
$option->id;
} else {
$optionId =
'editProductOptions.' .
$product->id .
'.' .
$option_group->id;
}
@endphp
@if ($option_group->multiple)
|
{{ currencyFormat($product->sell_price) }} |
|
|
|
{{ __('No items added yet. Search and add items above.') }} |
|||||