Dear {{ $booking->guest_name }},
Your booking request has been received successfully. Here are your booking details:
Booking Code: {{ $booking->booking_code }}
Room Type
{{ $booking->roomType->name ?? 'N/A' }}
Check-in Date
{{ $booking->check_in_date->format('d M Y') }}
Check-out Date
{{ $booking->check_out_date->format('d M Y') }}
Number of Nights
{{ $booking->check_in_date->diffInDays($booking->check_out_date) }}
Number of Guests
{{ $booking->number_of_guests }}
Estimated Total
Rp {{ number_format($booking->estimated_total, 0, ',', '.') }}
Payment Status
{{ $booking->payment_status }}
@if($requiresPayment && $paymentUrl)
⚠️ Payment Required: Please complete your payment to confirm your reservation.
Click the button above to complete your payment securely via Duitku payment gateway.
@endif @if($booking->special_requests)
Special Requests:
@endif
{{ $booking->special_requests }}