Order Number
Date
Total
Payment Method
Product Subtotal
{{ $item->product_name }} x {{ $item->quantity }} ₹{{ number_format($item->price * $item->quantity, 2) }}
Sub Total ₹{{ number_format($order->order_amount, 2) }}
Pre Discount - ₹{{ number_format($prediscount, 2) }}
Discount @if($order->coupon_code) ({{ $order->coupon_code }}) @endif - ₹{{ number_format($order->discount_amount, 2) }}
Amount After Discount ₹{{ number_format($order->order_amount_after_discount, 2) }}
GST ({{ $order->total_gst_percentage }}%) ₹{{ number_format($order->total_gst_amount, 2) }}
Shipping {{ $order->shipping_type_price == 0 ? 'Free Shipping' : '₹' . number_format($order->shipping_type_price, 2) }}
Total ₹{{ number_format($order->order_amount_with_shipping, 2) }}