@if(empty($submission))
{{-- Services on OOTBO + per-service approval --}}
{{-- NOC Document (if uploaded) --}}
@if(!empty($submission['noc_document_url']))
@endif
{{-- Action buttons --}}
Submission data could not be loaded. The API may be unavailable.
@endif
{{-- Top row: PDF viewer + Vendor declared data --}}
{{-- PDF / Document viewer --}}
{{-- Vendor-declared data --}}
{{-- Portal verify link --}}
{{-- Verified details form --}}
License Document
@if(!empty($submission['document_url']))
Open in New Tab
@else
@endif
No document uploaded
Vendor-Declared Details
@if(!empty($submission['status'])) {{ ucwords(str_replace('_', ' ', $submission['status'])) }} @endif| License Number | {{ $submission['license_number'] ?? '—' }} |
|---|---|
| Issuing Authority | {{ $submission['issuing_authority_name'] ?? ($submission['issuing_authority_custom'] ?? '—') }} |
| Declared Expiry | @if(!empty($submission['declared_expiry_date'])) {{ viso_date_format($submission['declared_expiry_date']) }} @else — @endif |
| Legal Status | {{ $submission['legal_status'] ?? '—' }} |
| Clarification Count | {{ $submission['clarification_count'] ?? 0 }} / 1 |
| Last Rejection Code | {{ $submission['rejection_code'] }} {{ $submission['rejection_reason'] ?? '' }} |
Verify on Portal
Open the government portal to verify this license, then paste the verified details below.
Open DED (Mainland) Open DMCC Open TECOMVerified Details (paste from portal)
Use the portal date, NOT the vendor's declared date.
Services on OOTBO @if(!empty($submission['services'])) {{ count($submission['services']) }} @endif
@if(!empty($submission['services']))
@foreach($submission['services'] as $service)
@if(!empty($service['rejection_reason']))
{{ $service['rejection_reason'] }}
@endif
@endforeach
@else
@php
$svcStatus = $service['verification_status'] ?? 'pending';
@endphp
{{ ucwords(str_replace('_', ' ', $svcStatus)) }}
@if(!empty($service['rejection_code']))
{{ $service['rejection_code'] }}
@endif
No services found for this vendor.
@endif