@extends('layouts.frontend') @section('title', 'Order Confirmation') @section('content')
Your order has been placed successfully.
Order Number: {{ $order->order_number }}
We've sent a confirmation email to your registered email address.
| {{ $item->product->name }} x{{ $item->quantity }} | ${{ number_format($item->subtotal, 2) }} |
| Total: | ${{ number_format($order->total_amount, 2) }} |
|---|
{{ $order->shipping_address }}
@if($order->payment_status === 'pending') Your payment is being reviewed. You will be notified once it's confirmed. @elseif($order->payment_status === 'confirmed') Your payment has been confirmed. Your order will be processed shortly. @else Your payment receipt was rejected. Please contact support or upload a new receipt. @endif