@extends('layouts.public') @section('title', 'Your quote — MuveOne') @section('content')

Your quote {{ $quote->quote_id }}

{{ $quote->from_address }} → {{ $quote->to_address }} · {{ number_format((float) $quote->distance) }} km

We've emailed this quote to {{ $quote->contact_email }} with a link to log in and book.

@foreach ($quote->sizes as $size) @endforeach
Van sizeEst. loadPrice
{{ $size->size }} m³ {{ $size->mass_kg ? number_format((float) $size->mass_kg) . ' kg' : '—' }} £{{ number_format((float) $size->price) }}
@if ((float) $quote->customs_price > 0)

Customs clearance (added at booking): £{{ number_format((float) $quote->customs_price) }}

@endif

Valid until {{ optional($quote->expires_at)->format('d/m/Y') }}.

@if (session('promo_error'))
{{ session('promo_error') }}
@endif @if (session('promo_success'))
{{ session('promo_success') }}
@endif @if ($quote->promo_code_id)

Promo code {{ $quote->promoCode->code }} applied — saving £{{ number_format((float) $quote->promo_discount_amount) }} on the balance.

@csrf @method('DELETE')

@else
@csrf
@endif
@endsection