@section('title', __('Service Options'))
{{-- new form --}}

{{ __('Create Option') }}

{{-- services --}} {{-- selected Services --}}
{{-- update form --}}

{{ __('Update Option') }}

{{-- services --}} {{-- selected Services --}}
{{-- details modal --}}

{{ $selectedModel->name ?? '' }} {{ __('Products') }}

@foreach ($selectedModel->products ?? [] as $key => $product)
{{ $key + 1 }}. {{ $product['name'] }}
@endforeach