|
Your removal quotation
Quote reference {{ $quote->quote_id }}
| From: {{ $quote->from_address }} |
| To: {{ $quote->to_address }} |
| Distance: {{ number_format((float) $quote->distance) }} km |
@if ($quote->date_basis === 'window')
| Collection window: {{ optional($quote->collection_window_from)->format('d/m/Y') }} – {{ optional($quote->collection_window_to)->format('d/m/Y') }} |
@elseif ($quote->moving_date)
| Moving date: {{ $quote->moving_date->format('d/m/Y') }} |
@endif
Prices by van size
| Size |
Est. load |
Price |
@foreach ($quote->sizes as $size)
| {{ $size->size }} m³ |
{{ $size->mass_kg ? number_format((float) $size->mass_kg) . ' kg' : '—' }} |
£{{ number_format((float) $size->price) }} |
@endforeach
@if ((float) $quote->customs_price > 0)
Customs clearance (added at booking): £{{ number_format((float) $quote->customs_price) }}
@endif
This quote is valid until {{ optional($quote->expires_at)->format('d/m/Y') }}. The login link above expires in {{ \App\Services\Auth\MagicLoginService::TTL_DAYS }} days.
|