@extends('layouts.app') @section('title', 'Booking received') @section('content')

Thanks for your booking!

@if ($booking)

We’ve received your booking {{ $booking->reference }}.

Pickup: {{ optional($booking->pickup_at)->format('d M Y, H:i') }}
Return: {{ optional($booking->return_at)->format('d M Y, H:i') }}
@if (! empty($booking->vehicle_name)) Vehicle: {{ $booking->vehicle_name }} @endif

@else

We’ve received your booking. Your reference is: {{ $reference ?? 'N/A' }}.

@endif

We’ll email you a confirmation shortly. If you have any questions, just reply to the email or contact us.

Back to site

@endsection