Booking Record History
Show report booking information, profile details, and export file.
{{-- Filter --}}
{{-- Table --}}
| Booking ID | Department | Applicant Name | Event Title | Booking Date | Status | Action |
|---|---|---|---|---|---|---|
| #{{ $row['id'] }} | {{ $row['department'] ?? 'N/A' }} | {{ $row['name'] ?? 'N/A' }} | "{{ $row['event_title'] ?? 'N/A' }}" | {{ $row['date_booking'] ?? 'N/A' }} | @if(($row['status'] ?? '') === 'Approved') Approved @elseif(($row['status'] ?? '') === 'Reject') Rejected @else Pending @endif | |
| No records found. | ||||||