@extends('layouts.app') @section('content')
{{ auth()->user()->name }}
{{ auth()->user()->email }}
{{ auth()->user()->mobile ?? 'Not provided' }}
{{ auth()->user()->country->name ?? 'Not provided' }}
{{ auth()->user()->state ?? 'Not provided' }}
{{ auth()->user()->city ?? 'Not provided' }}
{{ $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 }}