{{-- resources/views/checkout/success.blade.php --}} @extends('layouts.app') @section('title','Order confirmed') @section('content')

Thank You for Your Order!

Your order {{ $order->order_no }} has been paid successfully.

@isset($declarationUrl) @endisset
Order Summary
Subtotal: £{{ number_format($totals['subtotal'], 2) }}
VAT: £{{ number_format($totals['vat'], 2) }}
Total: £{{ number_format($totals['total'], 2) }}
Order Items
@foreach($order->items as $it) @endforeach
Image Title Product ID External ID Qty Unit Price Line Total
@if($it->image_url) {{ $it->title }} @else No Image @endif {{ $it->title }} {{ $it->product_id ?? '—' }} {{ $it->external_id ?? '—' }} {{ $it->qty }} £{{ number_format($it->unit_gbp, 2) }} £{{ number_format($it->line_gbp, 2) }}
@endsection