Hi {{ $customer_name }},
We've received your order #{{ $order->payment_order_id }} and are getting it ready for shipment. You'll receive another email once your order has shipped.
Order Summary
| Item | Qty | Total |
|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | ₹{{ amountFormat($line_total_inclusive) }} |
| No items found in this order. | ||
| Subtotal | ₹{{ amountFormat($total_taxable_value + $total_gst_amount) }} |
|---|---|
| Shipping | ₹{{ amountFormat($order->shipping_cost) }} |
| Branding Charges | ₹{{ amountFormat($order->branding_cost) }} |
| Coupon Discount | - ₹{{ amountFormat($order->coupon_amount) }} |
| Coin Discount | - ₹{{ amountFormat($order->coin_cost * $order->coins) }} |
| Grand Total | @php $grand_total = $total_taxable_value + $total_gst_amount + $order->shipping_cost + $order->branding_cost - $order->coupon_amount - $order->coin_cost * $order->coins; @endphp ₹{{ amountFormat(max(0, $grand_total)) }} |
Shipping Address
{{ $order->shippingAddress->line1 }}
@if ($order->shippingAddress->line2)
{{ $order->shippingAddress->line2 }}
@endif
{{ $order->shippingAddress->city }}, {{ $order->shippingAddress->state }}
{{ $order->shippingAddress->pincode }}
{{ $order->shippingAddress->country }}