@extends('layouts.public') @section('title', 'Booking confirmed — MuveOne') @section('content')

Booking confirmed — {{ $order->order_id }}

{{ $order->from_address }} → {{ $order->to_address }} · {{ $order->size }} m³

@if ((float) $order->amounts->customs_price > 0) @endif
Removal price£{{ number_format((float) $order->amounts->size_price) }}
Customs clearance£{{ number_format((float) $order->amounts->customs_price) }}
Order total£{{ number_format((float) $order->amounts->order_total) }}
Deposit due now£{{ number_format((float) $order->amounts->deposit_amount) }}
Balance due later£{{ number_format($order->balanceDue()) }}

Status: {{ $order->order_state->label() }}.

@if ($order->order_state->value === 'deposit_pending')
@csrf
@endif
@endsection