Generated on {{ date('d/m/Y H:i') }}
Branch: {{ $branch->name }}
District: {{ $branch->district->name ?? 'N/A' }}
Region: {{ $branch->region->name ?? 'N/A' }}
Report Date: {{ date('d/m/Y') }}
Total Enquiries
Pending
Assigned
Approved
| # | Date | Check No | Member | Type | District | Status |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $enquiry->created_at->format('d/m/Y') }} | {{ strtoupper($enquiry->check_number) }} |
{{ strtoupper($enquiry->full_name) }} {{ strtoupper($enquiry->force_no) }} |
{{ strtoupper(str_replace('_', ' ', $enquiry->type)) }} | {{ strtoupper($enquiry->district->name ?? 'N/A') }} | @php $statusClass = 'status-' . strtolower($enquiry->status); @endphp {{ strtoupper($enquiry->status) }} |
| No enquiries found | ||||||
| Enquiry Type | Total | Pending | Assigned | Approved |
|---|---|---|---|---|
| {{ ucfirst(str_replace('_', ' ', $stat['type'])) }} | {{ $stat['count'] }} | {{ $stat['pending'] }} | {{ $stat['assigned'] }} | {{ $stat['approved'] }} |
| District | Total | Pending | Assigned | Approved |
|---|---|---|---|---|
| {{ $stat['district'] }} | {{ $stat['count'] }} | {{ $stat['pending'] }} | {{ $stat['assigned'] }} | {{ $stat['approved'] }} |