@section('title') Evaluation @endsection @include('pages.apps.evaluation.service.partials.stepper', ['currentStep' => 2])

{{ __('Services Details') }}

@csrf @method('PUT') @php $alphabet = range('A', 'Z'); $alphabetIndex = 0; $forms = App\Models\Form::with('formSections.formSubSections.formDetails')->where('sub_category_id', $application->product_group->parent_id)->get(); if ($forms->count() > 0) { $subCategoryForm = $forms->whereNull('product_group_id')->first(); $productGroupForm = $forms->where('product_group_id', $application->product_group_id)->first(); $form = $productGroupForm ? $productGroupForm : $subCategoryForm; } else { $form = App\Models\Form::with('formSections.formSubSections.formDetails')->where('type', $application->type)->where('is_common', 1)->first(); } @endphp
@php $alphabetIndex = 0; @endphp
@foreach ($form->formSections->sortBy('order_index') as $formSection)
@include('pages.apps.evaluation.service.evaluator.partials.application_detail_3_1', ['alphabetIndex' => $alphabetIndex++, 'item' => $application->items->first()])
@endforeach
Back
@include('pages.apps.evaluation.service.partials.submit-confirmation')
@include('pages.apps.evaluation.service.partials.delete-confirmation') @push('scripts') @endpush