@vite(['resources/css/app.css']) {{-- if you have it --}}

Booking {{ $booking->reference }}

@if($booking->customer_real_name) {{ $booking->customer_real_name }} @elseif($booking->customer?->email) {{ $booking->customer->email }} @endif {{ ucfirst($booking->status ?? 'pending') }}

@if(session('ok'))
{{ session('ok') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Details

Vehicle
{{ $booking->car_label ?: '—' }}
Start
{{ optional($booking->start_at)->format('Y-m-d H:i') }}
End
{{ optional($booking->end_at)->format('Y-m-d H:i') }}

Money

Total
{{ $money((int)($booking->total_amount ?? 0)) }}
Paid so far
{{ $money((int)($booking->amount_paid ?? 0)) }}
Balance due
{{ $money($balanceDue) }}

Deposit required
{{ $money($depositRequired) }}
Deposit paid
{{ $money($depositPaid) }}
Deposit outstanding
{{ $money($depositDue) }}
Security hold
{{ $money((int)($booking->hold_amount ?? 0)) }}

Deposit payment

@if($depositDue <= 0)

Thanks — your deposit is fully paid.

@else
@csrf

(This records a payment in our system. Online card checkout can be added later if you want Stripe.)

@endif

Having trouble? Email us and include your reference {{ $booking->reference }}.