@extends('layouts.public') @section('title', 'Your quotes — MuveOne') @section('content')
Your orders
| Reference | Route | Status | Invoices | |
|---|---|---|---|---|
| {{ $order->order_id }} | {{ $order->from_address }} → {{ $order->to_address }} | {{ $order->order_state->label() }} | @if ($order->order_state->value === 'deposit_pending') @elseif ($order->order_state->value === 'balance_pending') @endif | @foreach ($order->invoices as $invoice) @if ($invoice->pdf_path) {{ $invoice->invoice_no }} @endif @endforeach |
You don't have any quotes yet.
@elseYour recent quotes
| Reference | Route | Status | From | |
|---|---|---|---|---|
| {{ $quote->quote_id }} | {{ $quote->from_address }} → {{ $quote->to_address }} | {{ $quote->status->label() }} | £{{ number_format((float) $quote->sizes->min('price')) }} | @if ($quote->status->value === 'active') Book now @elseif ($quote->status->value === 'expired') @endif |