# | Item & Description | Qty | Rate | Amount |
---|---|---|---|---|
{{ $index + 1 }} | {{ $cartProduct->product->title ?? 'Unnamed Product' }} | {{ number_format($cartProduct->quantity, 2) }} | {{ number_format($cartProduct->unit_price, 2) }} | {{ number_format($cartProduct->quantity * $cartProduct->unit_price, 2) }} |
Sub Total | {{ number_format($order->cart_total, 2) }} |
Shipping charge | {{ number_format($order->delivery_charge, 2) }} |
Discount | {{ number_format($order->discount, 2) }} |
Total | NPR {{ number_format($order->grand_total, 2) }} |