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

Section's Summary

{{ __('List Of Sections') }}

@foreach ($sections as $index => $section) @endforeach
{{ __('No.') }} {{ __('Application Fields') }} {{ __('Evaluation Remarks') }} {{ __('Evaluation Status') }}
{{ $index + 1 }}.0 {{ \App\Models\EvaluatorSection::SECTION[$section->section] ?? $section->section }} {{ 'Status: ' . ($section->is_comply ? 'Comply' : 'Not Comply') }} @if (!empty($section->remarks))
Remarks: {{ $section->remarks }} @endif @if ($section->review) @php $count = 1; foreach ($section->review as $review) { echo '
Remarks ' . $count . ': '; if ($review->is_comply == 0) { echo $review->remarks; } else { echo $review->notes; } $count++; } @endphp @endif
@if ($section->is_comply) @else @endif

Overall Evaluation Conclusion

{{-- --}}
@include('pages.apps.evaluation.service.partials.summary_modal') @push('scripts') @endpush