Hi {{ $order->delivery_name }},
Your order has been placed successfully. Here are the details:
| Order Number | {{ $order->order_number }} |
| Order Status | {{ ucfirst(str_replace('_', ' ', $order->order_status)) }} |
| Payment Method | {{ $order->payment_method === 'cod' ? 'Cash on Delivery' : 'Bank Transfer' }} |
| Payment Status | {{ ucfirst($order->payment_status) }} |
Order Items
| Item | Qty | Price |
|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | LKR {{ number_format($item->subtotal, 2) }} |
| Subtotal | LKR {{ number_format($order->subtotal, 2) }} | |
| Delivery | LKR {{ number_format($order->delivery_charge, 2) }} | |
| Total | LKR {{ number_format($order->total, 2) }} | |
Delivery Address
{{ $order->delivery_name }}
{{ $order->delivery_address }}
{{ $order->delivery_city }}, {{ $order->delivery_state }} {{ $order->delivery_postal_code }}
Phone: {{ $order->delivery_phone }}
Bank Transfer Instructions:
Please transfer the total amount and upload your receipt on the order confirmation page.
@endif
Please transfer the total amount and upload your receipt on the order confirmation page.