@extends('layouts.frontend') @push('page-title') Thank you for your booking @endpush @section('content')

Thank you for your booking.

Here are the details of your booking

Booking Reference: {{ $reservation->booking_ref }}
Your Name: {{ $reservation->first_name }} {{ $reservation->last_name }}
Email: {{ $reservation->email }}
Phone Number: {{ $reservation->phone_number }}
Reservation Date: {{ date('l d/m/Y', strtotime($reservation->reservation_date)) }}
Reservation Time: {{ $reservation->reservation_time }}
Number of guests: {{ $reservation->guest_number }}
What your joining us for: {{ str_replace('_', ' ', $reservation->joining_for) }}

We have sent you an email with full details of your reservation. This email also includes a link if you wish to cancel your reservation with us.

@endsection