{{ session('success') }}
@endif
Booking Application Details
Review booking information, profile details, and attachments.
| Booking ID | Applicant Name | Event Title | Booking Date | Status | Action |
|---|---|---|---|---|---|
| No booking records available to display. | |||||
| #{{ $row['id'] }} | {{ $row['name'] ?? 'N/A' }} | "{{ $row['event_title'] ?? 'N/A' }}" | {{-- TALLY DB: Menggunakan start_date hingga end_date --}}{{ $row['start_date'] ?? 'N/A' }} ➔ {{ $row['end_date'] ?? 'N/A' }} | @if(($row['status'] ?? 'Pending') === 'Approved') Approved @elseif(($row['status'] ?? 'Pending') === 'Reject') Rejected @else Pending @endif | View |