@php
$config = [
'approved' => ['bg' => '#d1fae5', 'color' => '#065f46', 'label' => 'Approved'],
'rejected' => ['bg' => '#fee2e2', 'color' => '#991b1b', 'label' => 'Rejected'],
'revoked' => ['bg' => '#fef3c7', 'color' => '#92400e', 'label' => 'Revoked'],
'reinstated' => ['bg' => '#dbeafe', 'color' => '#1e40af', 'label' => 'Reinstated'],
];
$c = $config[$status] ?? ['bg' => '#f3f4f6', 'color' => '#1f2937', 'label' => ucfirst($status)];
@endphp
Dear {{ $application->user->name }},
@if($status === 'approved')
Congratulations! Your local fish license application has been approved.
Your license is now active. Please log in to view and download your license details.
@elseif($status === 'rejected')
We regret to inform you that your local fish license application has been rejected.
Please log in to the system to view the reason and reapply if applicable.
@elseif($status === 'revoked')
Your local fish license has been revoked by the Ministry of Fisheries & Ocean Resources.
Please log in to the system for further details or contact the office directly.
@elseif($status === 'reinstated')
Good news! Your local fish license has been reinstated by the Ministry of Fisheries & Ocean Resources.
Your license is now active again. Please log in to the system to view your updated license details.
@endif
Status: {{ $c['label'] }}
{{-- Application Details --}}
| Application ID |
#{{ $application->id }} |
| License Type |
{{ $application->license_type }} |
| Business Name |
{{ $application->business_name }} |
| Applicant Name |
{{ $application->user->name }} |
| Applicant Email |
{{ $application->user->email }} |
| Updated At |
{{ now()->format('d M Y, h:i A') }} |
View Dashboard →
This is an automated notification from the Kiribati Local Fish Licensing System.
Please do not reply to this email.