|
|
Hotel Booking Invoice |
| Name: {{ auth()->user()->name }} | Email: {{ auth()->user()->email }} |
| Phone: {{ auth()->user()->phone ?? 'Not provided' }} | Country: {{ auth()->user()->country->name ?? 'Not provided' }} |
| State: {{ auth()->user()->state ?? 'Not provided' }} | City: {{ auth()->user()->city ?? 'Not provided' }} |
| Transaction ID: {{ $booking->transaction_id }} | Hotel: {{ $hotel->title }} |
| Check-In: {{ date('d M Y', strtotime($booking->check_in)) }} | Check-Out: {{ date('d M Y', strtotime($booking->check_out)) }} |
| Rooms: {{ $booking->rooms }} | Guests: {{ $booking->adults }} Adults, {{ $booking->childrens }} Children |
| Payment Method: {{ $booking->payment_via }} | Booking Status: Confirmed |
| Rooms | Price per Night | Total |
|---|---|---|
| {{ $booking->rooms }} | ${{ number_format($hotel->extra_field_1, 2) }} | ${{ number_format($booking->price, 2) }} |
| Total Payment | ${{ number_format($booking->price, 2) }} | |
Thank you for choosing us! We're honored to have had the chance to host you and hope your stay was nothing short of exceptional.