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
{{ $classificationReview->is_comply == 1 ? 'Comply' : 'Not Comply' }}
{{ $classificationReview->remarks }}
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
{{ $providerReview->is_comply == 1 ? 'Comply' : 'Not Comply' }}
{{ $providerReview->remarks }}
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
{{ $brochureReview->is_comply == 1 ? 'Comply' : 'Not Comply' }}
{{ $brochureReview->remarks }}

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 }}