Booking Information
#{{ $booking->id }}
{{ $booking->room->name }}
@if($booking->room->room_number)
(Room #{{ $booking->room->room_number }})
@endif
${{ number_format($booking->room->price, 2) }} per night
{{ $booking->check_in ? $booking->check_in->format('F d, Y') : 'Not specified' }}
{{ $booking->check_out ? $booking->check_out->format('F d, Y') : 'Not specified' }}
{{ $booking->booking_date ? $booking->booking_date->format('F d, Y') : 'Not specified' }}
{{ $booking->booking_source ?? 'Website' }}
@if($booking->status === 'confirmed')
Confirmed
@elseif($booking->status === 'pending')
Pending
@else
Cancelled
@endif
@if($booking->special_requests)
{{ $booking->special_requests }}
@endif
{{ $booking->created_at->format('F d, Y g:i A') }}