@extends('layouts.app') @section('title', 'Booking received') @section('content')
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
We’ve received your booking. Your reference is: {{ $reference ?? 'N/A' }}.
@endifWe’ll email you a confirmation shortly. If you have any questions, just reply to the email or contact us.