📢 Action Required: A new booking has been made. Please review and confirm the booking.
@if($booking->bookingResource)
{{ $booking->bookingResource->name }}
Type: {{ ucfirst($booking->bookingResource->resource_type) }}
@if($booking->bookingResource->description)
{{ $booking->bookingResource->description }}
@endif
@endif
Booking Information
Booking Reference:
{{ $booking->booking_reference }}
Booking Date:
{{ $booking->created_at->format('F j, Y \a\t g:i A') }}
Status:
{{ ucfirst($booking->status) }}
Schedule Details
📅 Start Date & Time:
{{ $booking->start_datetime->format('l, F j, Y') }}
{{ $booking->start_datetime->format('g:i A') }}
📅 End Date & Time:
{{ $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) }}
Customer Information
Name:
{{ $booking->customer_name }}
Email:
{{ $booking->customer_email }}
@if($booking->customer_phone)
Phone:
{{ $booking->customer_phone }}
@endif
@if($booking->order)
Payment Information
Order Number:
{{ $booking->order->order_number }}
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
Payment Status:
{{ ucfirst($booking->order->payment_status) }}
@endif
@if($booking->special_requests)
Special Requests
{{ $booking->special_requests }}
@endif