A. General Information

Service Classification
{{-- --}}

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

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

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

{{ $classification?->is_comply == 1 ? 'Comply' : 'Not Comply' }}

{{ $classification?->remarks ?? '-' }}

{{ $classification?->notes ?? '-' }}

Project Leader Review
@php $classificationReview = null; if ($application_section && $application_section->review) { $classificationReview = $application_section->review ->where('type', App\Models\PlReview::TYPE_SERVICE_CLASSIFICATION) ->first(); } @endphp
is_comply) == '1' ? 'checked' : '' }} onchange="updateLabel('classification')">
is_comply) == '0' ? 'checked' : '' }} onchange="updateLabel('classification')">
@error('is_comply') {{ $message }} @enderror
Service Provider Information
{{-- --}}
@foreach ($application->services->attachments->where('type', 'image') as $image) {{ $image->type . $image->index }} @endforeach
{{ $application->services->name ?? '-' }}

{{ $provider?->is_comply == 1 ? 'Comply' : 'Not Comply' }}

{{ $provider?->remarks ?? '-' }}

{{ $provider?->notes ?? '-' }}

Project Leader Review
@php $providerReview = null; if ($application_section && $application_section->review) { $providerReview = $application_section->review ->where('type', App\Models\PlReview::TYPE_SERVICE_PROVIDER) ->first(); } @endphp
is_comply) == '1' ? 'checked' : '' }} onchange="updateLabel('provider')">
is_comply) == '0' ? 'checked' : '' }} onchange="updateLabel('provider')">
@error('is_comply') {{ $message }} @enderror
Service Provider Information
{{-- --}}
{{ $application->services->description ?? '-' }}
@if (optional($service_brochure)->path) @else {{ 'No service brochure uploaded by company' }} @endif

{{ $brochure?->is_comply == 1 ? 'Comply' : 'Not Comply' }}

{{ $brochure?->remarks ?? '-' }}

{{ $brochure?->notes ?? '-' }}

Project Leader Review
@php $brochureReview = null; if ($application_section && $application_section->review) { $brochureReview = $application_section->review ->where('type', App\Models\PlReview::TYPE_SERVICE_BROCHURE) ->first(); } @endphp
is_comply) == '1' ? 'checked' : '' }} onchange="updateLabel('brochure')">
is_comply) == '0' ? 'checked' : '' }} onchange="updateLabel('brochure')">
@error('is_comply') {{ $message }} @enderror

B: Contact Person

Primary Contact Person
{{-- --}}
{{ $application->services->contact_1_name}}
{{ $application->services->contact_1_designation }}
{{ $application->services->contact_1_phone_no }}
{{ $application->services->contact_1_email }}
Secondary Contact Person
{{-- --}}
{{ $application->services->contact_2_name }}
{{ $application->services->contact_2_designation }}
{{ $application->services->contact_2_phone_no }}
{{ $application->services->contact_2_email }}