Subtotal
₹{{ number_format($order->subtotal, 2) }}
@if($order->tax_amount > 0)
Tax
₹{{ number_format($order->tax_amount, 2) }}
@endif
Shipping
{{ $order->shipping_fee > 0 ? '₹' . number_format($order->shipping_fee, 2) : 'Free' }}
@if($order->cod_fee > 0)
COD Fee
₹{{ number_format($order->cod_fee, 2) }}
@endif
@if($order->discount_amount > 0)
Discount
-₹{{ number_format($order->discount_amount, 2) }}
@endif
Total
₹{{ number_format($order->total, 2) }}