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

Booking Application Details

Review booking information, profile details, and attachments.

{{-- ===================== SENARAI BOOKING ===================== --}} @if(!isset($booking)) {{-- SEARCH BAR --}}
{{-- RESULT COUNT --}}

@if(empty($bookings) || count($bookings) == 0) @else @foreach($bookings as $row) @endforeach @endif
Booking ID Department Applicant Name Event Title Booking Date Status Action
No booking records available to display.
#{{ $row['id'] }} {{ $row['department'] ?? 'N/A' }} {{ $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
{{-- No results row --}}
{{-- ===================== DETAIL BOOKING ===================== --}} @else @php $eq = $equipment ?? collect(); @endphp
@csrf @method('PATCH')
{{-- Booking Profile --}}

Booking Profile

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 --}}

Booking Info

Hall NameDewan 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
{{-- Equipment Table --}}

Requested Equipment & Permissions

@foreach([ ['key' => 'pa_system', 'label' => 'PA System'], ['key' => 'microphone', 'label' => 'Microphone'], ['key' => 'plastic_chair', 'label' => 'Plastic Chair'], ['key' => 'banquet_chair', 'label' => 'Banquet Chair'], ['key' => 'round_table', 'label' => 'Round Table'], ['key' => 'large_fan', 'label' => 'Large Fan'], ['key' => 'led_screen', 'label' => 'LED Screen'], ] as $item) @php $maxQty = $eq[$item['key']]->max_quantity ?? 0; @endphp @endforeach
Equipment Name Requested Qty Approved Qty Max
{{ $item['label'] }} {{ $booking[$item['key']] ?? 0 }} {{ $maxQty }}
Others: {{ $booking['other_tools'] ?? '-' }} -
{{-- KANAN --}}
Approval Status

Attachment Documents

@if(!empty($booking['supporting_doc']))
LINK {{ basename($booking['supporting_doc']) }}
📥
@else
Programme Paperwork No File
@endif
@endif

© 2026 K-Book WBL Dev Team. All Rights Reserved.