@include('host.header')

Bookings

@forelse($bookings as $booking) @empty @endforelse
Booking ID Activity Name location Customer Name Phone Email Date of Booking Date of Activity Number of Adult Number of Child Number of Infants Total Amount Payment Type Payment Status Status Action
{{ $booking->booking_reference ?? 'N/A' }} {{ $booking->activity->activityOption->option_name ?? 'N/A' }} {{ $booking->activity->location ?? 'N/A' }} {{ $booking->customer_name ?? 'N/A' }} {{ $booking->customer_phone ?? 'N/A' }} {{ $booking->customer_email ?? 'N/A' }} {{ $booking->booking_date ?? 'N/A' }} {{ $booking->activity_date ?? 'N/A' }} {{ $booking->adults ?? 'N/A' }} {{ $booking->children ?? 'N/A' }} {{ $booking->infants ?? 'N/A' }} {{ $booking->subtotal ?? 'N/A' }} AED {{ $booking->payment_method ?? 'N/A' }} {{ $booking->payment_status ?? 'N/A' }} @switch($booking->status) @case('pending') Pending @break @case('approved') Approved @break @case('rejected') Rejected @break @default {{ ucfirst($booking->status) }} @endswitch
@if($booking->status !== 'approved') @endif @if($booking->status !== 'suspended') @endif
No bookings found
@include('host.footer')