A new booking request has been received. Please review and confirm.
Booking Number: {{ $booking->booking_number }}
Status: {{ ucfirst($booking->booking_status) }}
Status: {{ ucfirst($booking->booking_status) }}
Guest Information
| Name: | {{ $booking->guest_name }} |
| Email: | {{ $booking->guest_email }} |
| Phone: | {{ $booking->guest_phone }} |
Booking Details
| Room Type: | {{ $booking->roomType?->name ?? 'N/A' }} |
| Check-in: | {{ $booking->check_in_date->format('M d, Y') }} |
| Check-out: | {{ $booking->check_out_date->format('M d, Y') }} |
| Nights: | {{ $booking->nights }} |
| Guests: | {{ $booking->adults }} Adult(s){{ $booking->children > 0 ? ', ' . $booking->children . ' Child(ren)' : '' }} |
| Total Amount: | ₦ {{ number_format($booking->total_amount, 0) }} |
Please log in to the admin panel to confirm or cancel this booking.