@if ($formSubSection->section_name == 'Service Classification' || $formSubSection->section_name == 'Product 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('pages.apps.evaluation.form-input.input-edit.' . $formDetail->input_type))
@include('pages.apps.evaluation.form-input.input-edit.' . $formDetail->input_type)
@endif
@endforeach
@endif
@php
$evaluatorReview = $evaluator_reviews->where(
'type',
$item->id . '_section_' . $formSubSection->id,
)
->first();
@endphp