@if(session('success'))
{{ session('success') }}
@endif

Booking Application Details

Review booking information, profile details, and attachments.

@if(!isset($booking))
@if(empty($bookings) || count($bookings) == 0) @else @foreach($bookings as $row) {{-- TALLY DB: Menggunakan start_date hingga end_date --}} @endforeach @endif
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' }}"{{ $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
@else
@csrf @method('PATCH')

Booking Profile

{{-- TALLY DB: Ditukar kepada user_category --}} {{-- TALLY DB: Ditukar kepada phone --}} {{-- TALLY DB: Ditukar kepada matric_no --}}
Booking ID #{{ $booking['id'] }}
Name {{ $booking['name'] ?? 'N/A' }}
Applicant Category{{ $booking['user_category'] ?? 'N/A' }}
Phone Number{{ $booking['phone'] ?? 'N/A' }}
Email {{ $booking['email'] ?? 'N/A' }}
Matrix / Staff No{{ $booking['matric_no'] ?? 'N/A' }}

Booking Info

{{-- TALLY DB: Ditukar kepada department --}} {{-- TALLY DB: Menggunakan start_date hingga end_date --}} {{-- TALLY DB: Ditukar kepada start_time hingga end_time --}} {{-- TALLY DB: Ditukar label dan guna participants --}} {{-- TALLY DB: vip_inside (Int) bukan nama --}} {{-- TALLY DB: vip_outside (Int) bukan nama --}}
Hall Name Dewan KHAR
Event Title "{{ $booking['event_title'] ?? 'N/A' }}"
PTJ / Faculty / Association{{ $booking['department'] ?? 'Not Specified' }}
Booking Date{{ $booking['start_date'] ?? 'N/A' }} ➔ {{ $booking['end_date'] ?? 'N/A' }}
Time Session{{ $booking['start_time'] ?? 'N/A' }} - {{ $booking['end_time'] ?? 'N/A' }}
Total Participants{{ $booking['participants'] ?? '0' }} Pax
Total Internal VIPs{{ $booking['vip_inside'] ?? '0' }} Pax
Total External VIPs{{ $booking['vip_outside'] ?? '0' }} Pax

Requested Equipment & Permissions

Tick to Allow
Allow Equipment Name Requested Qty Approved Qty
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> PA System {{ $booking['pa_system'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> Microphone {{ $booking['microphone'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> Plastic Chair {{ $booking['plastic_chair'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> Banquet Chair {{ $booking['banquet_chair'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> Round Table {{ $booking['round_table'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> Large Fan {{ $booking['large_fan'] ?? 0 }}
0 ? 'checked' : '' }} class="w-4 h-4 text-[#0B7A6B] border-slate-300 rounded focus:ring-[#0B7A6B] cursor-pointer"> LED Screen {{ $booking['led_screen'] ?? 0 }}
Others: {{ $booking['other_tools'] ?? '-' }} -
Approval Status

Attachment Documents

@if(!empty($booking['supporting_doc']))
LINK {{ basename($booking['supporting_doc']) }}
📥
@else
Programme Paperwork No File
@endif
@endif
{{-- ... semua content page ... --}} {{-- COPYRIGHT FOOTER --}}