Room: {{ $booking->room->room_number }} - {{ $booking->room->roomType->name ?? '' }}
Check-in: {{ $booking->check_in_date->format('d M Y') }}
Check-out: {{ $booking->check_out_date->format('d M Y') }}
Nights: {{ $booking->nights }}
Room Rate: ₦{{ number_format($booking->room->roomType->base_price ?? 0, 2) }}/night
Subtotal: ₦{{ number_format($invoice->subtotal, 2) }}
@if($invoice->discount > 0)
Discount: -₦{{ number_format($invoice->discount, 2) }}
@endif
@if($invoice->tax > 0)
Tax: ₦{{ number_format($invoice->tax, 2) }}
@endif
Total: ₦{{ number_format($invoice->total, 2) }}