{{ $alphabet[$alphabetIndex] }}. {{ $formSection->section_name }}

@foreach ($formSection->formSubSections->sortBy('order_index') ?? [] as $formSubSection) @php if ($formSubSection->formDetails->count() == 0 && !($formSubSection->section_name == 'Service Classification' || $formSubSection->section_name == 'Product Classification')) { continue; } @endphp
{{ $formSubSection->section_name }}
@if ($formSubSection->section_name == 'Service Classification')

{{ $application->product_group->parent->parent->name }}

{{ $application->product_group->parent->name }}

{{ $application->product_group->name }}

@else @foreach ($formSubSection->formDetails->where('is_deprecated', false)->sortBy('order_index') as $formDetail) @if (View::exists('components.input.' . $formDetail->input_type)) @include('components.input.' . $formDetail->input_type) @endif @endforeach @endif
@php $sectionReview = null; if ($applicationSection && $applicationSection->review) { $sectionReview = $applicationSection->review ->where( 'type', $item->id . '_section_' . $formSubSection->id, ) ->first(); } @endphp
Evaluator Review
id . '_is_comply', optional($sectionReview)->is_comply) == '1' ? 'checked' : '' }} disabled>
id . '_is_comply', optional($sectionReview)->is_comply) == '0' ? 'checked' : '' }} disabled>
@error('section_' . $formSubSection->id . '_is_comply') {{ $message }} @enderror
@endforeach