@extends('layouts.app') @section('title', 'Order Placed - AVIOBOOTS') @section('content')

Order Confirmed!

Your order #{{ $order->id }} has been placed successfully.

Payment method: Cash on Delivery

Total: Rs {{ number_format($order->total, 0) }}

You will receive a call from our team to confirm delivery.

Continue Shopping

Order items

@foreach($order->items as $it)
{{ $it->product_name }} × {{ $it->qty }} ({{ $it->size ?? 'N/A' }}) Rs {{ number_format($it->price * $it->qty, 0) }}
@endforeach
TotalRs {{ number_format($order->total, 0) }}
@endsection