@extends('layouts.shop') @section('title', 'Order Success') @section('content')

Thank you for your order!

We have received your order and are processing it. Below are your order reference details.

Order Number {{ $order->order_number }}
Customer Name {{ $order->customer_name }}
@if(!empty($order->customer_email))
Email Address {{ $order->customer_email }}
@endif
Total Charged ৳{{ number_format($order->total, 0) }}
Payment Type Cash on Delivery

How to track your order?

Save your Order Number and Email Address. You can use them on our Track Order page to inspect delivery status at any time, even without creating an account.

View Order Status Continue Shopping
@endsection