Thank You for Your Order!

Hi {{ $customer_name }},

We’ve received your order #{{ $order_number }} and are currently processing it.

Order Summary

@php $i = 1; $subtottal = 0; $gsttotal = 0; $brancingcost = 0; @endphp @forelse ($order_items as $items) @php $amount = $items->quantity * $items->sales_price; $gst = $items->cgst + $items->sgst; $rate = $amount / (1 + $gst / 100); $main_amount = $rate * $items->quantity; $gstamunt = ($rate * $gst) / 100; $subtottal = $subtottal + $rate; $gstamunt = ($rate * $gst) / 100; $totalamt = $rate + $gstamunt; $gsttotal += $gstamunt; $ogbrandcost = $items->branding_cost * $items->quantity; $brancingcost = $brancingcost + $ogbrandcost; @endphp @empty @endforelse
# Description HSN/SAC Qty Rate (₹) Amount (₹) GST % GST Amt (₹) Total (₹)
{{ $i++ }} {{ $items->product_name }} {{ $items->hsn_code }} {{ $items->quantity }} {{ amountFormat($rate) }} {{ amountFormat($main_amount) }} {{ $gst }}% {{ amountFormat($gstamunt) }} {{ amountFormat($totalamt) }}
No Data Found
Subtotal ₹{{ amountFormat($subtottal) }}
Total GST ₹{{ amountFormat($gsttotal) }}
Shipping ₹{{ amountFormat($order->shipping_cost) }}
Branding Cost ₹{{ amountFormat($order->branding_cost) }}
Coin Discount - ₹{{ amountFormat($order->coin_cost * $order->coins) }}
Grand Total ₹{{ amountFormat($subtottal + $gsttotal + $order->shipping_cost + $order->branding_cost - $order->coin_cost * $order->coins) }}
View Your Order