|
Invoice |
Hotel: {{ $hotel->title }}
Customer Name: {{ auth()->user()->name }}
Check-In: {{ date('d M Y', strtotime($booking->check_in)) }}
Check-Out: {{ date('d M Y', strtotime($booking->check_out)) }}
Rooms | Price per Night | Total |
---|---|---|
{{ $booking->rooms }} | {{ $hotel->extra_field_1 }} | ${{ $booking->price }} |
Total Payment | ${{ $booking->price }} |