@php $pageTitle = __('Edit Order') . ' #'; if ($selectedModel != null) { $pageTitle .= $selectedModel->code; } $pageTitle .= ' '; $pageTitle .= __('Products'); @endphp @section('title', $pageTitle)
S/N | Name | Options | QTY | Actions |
---|---|---|---|---|
{{ $key + 1 }} | {{ $product->name }} |
@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)
|
|
{{-- actions --}}
|