@extends('layouts.app')
@section('title', 'Order Confirmed')
@section('content')
Thank you, {{ $order->customer_name }}!
Your order has been placed successfully.
Order Number: {{ $order->order_number }}
@foreach($order->items as $item)
-
{{ $item->product_name }} × {{ $item->quantity }}
Rs {{ number_format($item->subtotal, 2) }}
@endforeach
Total: Rs {{ number_format($order->total, 2) }}
Continue Shopping
@endsection