# | Item & Description {{ $order->member_id }} | Qty | Rate | Amount |
---|---|---|---|---|
{{ $sl }} | {{ ($order_item->product_name) ? $order_item->product_name : '' }} | {{ number_format($order_item->quantity,$quantityDecimalPoint) }} | {{number_format($order_item->price ,$decimal_point)}} | {{ number_format($order_item->quantity * $order_item->price,$decimal_point) }} |
Gross Amount | {{ number_format($total,$decimal_point) }} | |||
Return Amount | {{ number_format(($total-$discount_amt),$decimal_point) }} | |||
Discount | {{ number_format($discount_amt,$decimal_point) }} | |||
Tax Amount | {{ number_format($tax_amt,$decimal_point) }} |