{{-- edit order products modal --}}
{{ __('Edit Order') }} {{ __("Products") }}
| 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 --}}
|