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

Check-Out Reminder

Dear {{ $booking->guest_name }},

Your check-out is tomorrow!

We hope you've had a wonderful stay with us. Here are your departure details:

Booking Summary

Booking Number: {{ $booking->booking_number }}
Room: {{ $booking->room?->room_number ?? 'N/A' }}
Check-out Date: {{ $booking->check_out_date->format('M d, Y') }}
Check-out Time: 11:00 AM
@if($balance > 0)
Outstanding Balance: ₦{{ number_format($balance, 0) }}

Please settle your balance at the front desk before departure.

@else

Total Amount: ₦{{ number_format($totalAmount, 0) }}

Balance: ₦0.00 - Fully Paid

@endif

Check-out Tips

Thank you for staying with us! We hope to welcome you back soon.

@if(isset($settings['hotel_phone']))

For any questions: {{ $settings['hotel_phone'] }}

@endif