@php $alphabet = range('a', 'z'); @endphp

Supporting Documents

Upload below listed documents to support the Main Certificate above:
@foreach ($application->product_group->supportingDoc as $supportingDoc) @php $supportingDocReview = $supportingDocIsComply = null; if ($certificateSection) { $supportingDocReview = $certificateSection?->review->where('type', App\Models\EvaluatorReview::TYPE_SUPPORTING_DOC . "_$supportingDoc->id")->first(); $supportingDocIsComply = $supportingDocReview?->is_comply; } elseif ($application->stage == App\Models\Application::STAGE_SO) { // handle so evaluation $sections = $evaluation?->section; if (is_array($sections)) { $supportingDocIsComply = !in_array('5', $sections); } } @endphp
{{ $supportingDoc->name }}
@if ($supportingDocIsComply !== null && $supportingDocIsComply == 0) @endif
@php $attachment = $application->attachments->where('type', 'supporting_document')->where('supporting_document_id', $supportingDoc->id)->first(); @endphp
@if ($attachment) [View Here] @else No documents available @endif
{{--
--}} @if (!$loop->last)
@endif @endforeach


Product Ownership

Please declare your company's ownership on the product:

@php $product_ownership = old('product_ownership', $application->product_ownership); @endphp @foreach (\App\Models\Application::PRODUCT_OWNERSHIP as $key => $value)
@endforeach @error('product_ownership')
{{ $message }}
@enderror