| Name | {{ $notification->customer->full_name ?? 'N/A' }} |
|---|---|
| {{ $notification->customer->email ?? '—' }} | |
| Phone | {{ $notification->customer->phone_number ?? '—' }} |
| Preferred Language | {{ strtoupper($notification->customer->preferred_language ?? 'EN') }} |
| Notification Channels |
via_email ? 'checked' : '' }}>
|
| Preferred Notification Language | {{ strtoupper($prefs?->language ?? 'EN') }} |
| Claim # | Status | Created At |
|---|---|---|
| {{ $claim->claim_number }} | {{ ucfirst($claim->status) }} | {{ \Carbon\Carbon::parse($claim->created_at)->format('F j, Y') }} |
No claims found.
@endforelse| Policy # | Coverage | Expires |
|---|---|---|
| {{ $policy->policy_number }} | {{ $policy->coverage_type ?? '-' }} | {{ \Carbon\Carbon::parse($policy->expiry_date)->format('F j, Y') }} |
No policies found.
@endforelse| Amount | Paid At | Method |
|---|---|---|
| {{ number_format($payment->amount, 2) }} | {{ \Carbon\Carbon::parse($payment->paid_at)->format('F j, Y') }} | {{ $payment->method ?? '-' }} |
No claim payments found.
@endforelse| Status | Created At |
|---|---|
| {{ $survey->survey_status }} | {{ \Carbon\Carbon::parse($survey->created_at)->format('F j, Y') }} |
No survey records found.
@endforelse| Garage | Discharged At |
|---|---|
| {{ $garage->garage_name }} | {{ \Carbon\Carbon::parse($garage->discharge_date)->format('F j, Y') }} |
No garage discharge data.
@endforelse| Description | Created At |
|---|---|
| {{ $work->description }} | {{ \Carbon\Carbon::parse($work->created_at)->format('F j, Y') }} |
No work orders found.
@endforelse