@extends('layouts.app') @section('content')

Booking Invoice

Guest Information

{{ auth()->user()->name }}

{{ auth()->user()->email }}

{{ auth()->user()->mobile ?? 'Not provided' }}

Location

{{ auth()->user()->country->name ?? 'Not provided' }}

{{ auth()->user()->state ?? 'Not provided' }}

{{ auth()->user()->city ?? 'Not provided' }}

Booking Information

{{ $booking->transaction_id }}

{{ $hotel->title }}

{{ date('F d, Y', strtotime($booking->check_in)) }}

{{ date('F d, Y', strtotime($booking->check_out)) }}

{{ $booking->rooms }}

{{ $booking->adults }} Adults, {{ $booking->childrens }} Children

{{ \App\Helpers\CurrencyHelper::formatPrice($booking->price) }}

{{ $booking->payment_via }}

Back to Hotels
@push('styles') @endpush @endsection