{{ config('app.name') }}

Booking Confirmation

Dear {{ $booking->guest_name }},

Your booking has been confirmed! Here are your booking details:

Booking Number: {{ $booking->booking_number }}
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: ₦ {{ number_format($booking->total_amount, 0) }}

Please keep this confirmation email for your records. Present it upon check-in.

If you have any questions, please contact us at {{ $settings['hotel_phone'] ?? '+234 XXX XXX XXXX' }} or {{ $settings['hotel_email'] ?? 'info@hotel.com' }}.

We look forward to welcoming you!

{{ config('app.name') }} Team