@extends('backend.layouts.master') @section('title') Show Booking @endsection @section('main-content')
Booking {{-- Generate PDF --}}
@if($order) @php $tour=DB::table('tours')->select('title')->where('id',$order->tour_id)->get(); @endphp
S.N. Name Email Tour Date Created Action
{{$order->id}} {{$order->first_name}} - {{$order->first_name}} {{$order->email}} @foreach($tour as $data) {{$order->tour->title ?? ''}} @endforeach {{$order->created_at->format('F d, Y h:i A')}}
@csrf @method('delete')

Booking Information

Booking Date: {{$order->created_at->format('D d M, Y')}} at {{$order->created_at->format('g : i a')}}
Phone: {{ $order->phone }}
Email: {{ $order->email }}
Country: {{$order->country}}
Language: {{ $order->language }}
Number of Adults: {{ $order->number_adult }}
Number of Children: {{ $order->number_child }}
Age of Children: {{ $order->age_child }}
Date of Arrival: {{ $order->date_arrival }}
Total Number Of Stay: {{ $order->total_stay }}
What do you want to experience: {{ $order->experience }}
Type of Accomodation: {{ $order->accomodation }}
How Much Is Your Budget: {{ $order->budget }}
Things Which You Like Most: {{ $order->like_most }}
Things Which You Dislike: {{ $order->dislike_most }}
Brief Description About You: {{ $order->brief_descript }}
@endif
@endsection