⏳ Booking Received!

⏳ Awaiting Confirmation: Your booking request has been received and is pending confirmation from our team.

Hi {{ $booking->customer_name }},

Thank you for your booking request. We've received your reservation and will review it shortly. You'll receive a confirmation email once it's approved.

@if($booking->bookingResource)

{{ $booking->bookingResource->name }}

Type: {{ ucfirst($booking->bookingResource->resource_type) }}

@endif

Booking Details

Booking Reference: {{ $booking->booking_reference }}
Booking Date: {{ $booking->created_at->format('F j, Y') }}
Status: Pending Confirmation

Schedule

📅 Start: {{ $booking->start_datetime->format('l, F j, Y') }}
{{ $booking->start_datetime->format('g:i A') }}
📅 End: {{ $booking->end_datetime->format('l, F j, Y') }}
{{ $booking->end_datetime->format('g:i A') }}
👥 Participants: {{ $booking->participants }} {{ Str::plural('participant', $booking->participants) }}
💰 Total Price: {{ $website->getCurrencySymbol() }} {{ number_format($booking->total_price, 2) }}
@if($booking->order)

Payment Information

Payment Method: @switch($booking->order->payment_method) @case('chipin') 💳 Online Payment @break @case('bank_transfer') 🏦 Bank Transfer @break @case('cash_on_delivery') 💵 Pay at Counter @break @default {{ ucfirst(str_replace('_', ' ', $booking->order->payment_method)) }} @endswitch
@if($booking->order->payment_method === 'cash_on_delivery')
Note: Payment will be collected at the counter when you arrive.
@endif
@endif @if($booking->special_requests)

Special Requests

{{ $booking->special_requests }}

@endif

What's Next?
• We'll review your booking request
• You'll receive a confirmation email once approved
• Please arrive 10-15 minutes early on your booking date
• Contact us if you have any questions

@if($website->settings['support_phone'] ?? null)

Need help? Contact us at {{ $website->settings['support_phone'] }}

@endif