@if (isset($site_logo)) {{ config('app.name') }} Logo @endif

Thank You for Your Order!

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

@php $total_taxable_value = 0; $total_gst_amount = 0; @endphp @forelse ($order_items as $item) @php // Correct calculation mirroring the final invoice logic $line_total_inclusive = $item->quantity * $item->sales_price; $gst_percentage = $item->cgst + $item->sgst; $line_taxable_value = $line_total_inclusive / (1 + $gst_percentage / 100); $line_gst_amount = $line_taxable_value * ($gst_percentage / 100); $total_taxable_value += $line_taxable_value; $total_gst_amount += $line_gst_amount; @endphp @empty @endforelse
Item Qty Total
{{ $item->product_name }} {{ $item->quantity }} ₹{{ amountFormat($line_total_inclusive) }}
No items found in this order.

@if ($order->coupon_amount > 0) @endif @if ($order->coins > 0) @endif
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 }}

View Your Order