BRANCH: {{ strtoupper($branch->name) }}
DISTRICT: {{ strtoupper($branch->district->name ?? 'N/A') }}
REGION: {{ strtoupper($branch->region->name ?? 'N/A') }}
REPORT GENERATED BY: {{ strtoupper(auth()->user()->name) }} ({{ auth()->user()->email }})
REPORT DATE: {{ strtoupper(date('d F Y, H:i:s')) }}
Total Enquiries
Pending
Assigned
Approved
Total Records: {{ number_format($enquiries->count()) }} | Branch: {{ strtoupper($branch->name) }}
| # | DATE | CHECK NO | MEMBER | TYPE | REGION | DISTRICT | REGISTERED BY | STATUS | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $enquiry->created_at->format('d/m/Y') }} | {{ strtoupper($enquiry->check_number) }} | {{ strtoupper($enquiry->full_name ?? 'N/A') }} | {{ strtoupper(str_replace('_', ' ', $enquiry->type)) }} | {{ strtoupper($enquiry->region->name ?? 'N/A') }} | {{ strtoupper($enquiry->district->name ?? 'N/A') }} | {{ $enquiry->registeredBy ? strtoupper($enquiry->registeredBy->name) : 'N/A' }} | {{ strtoupper($enquiry->status) }} | |
| NO ENQUIRIES FOUND | |||||||||