Return Sales Invoice | {{ $business_name }} |
Invoice: {{ $order->invoice_no }} | {{ date("d M Y", strtotime($order->invoice_date)) }}, {{ $order->order_time }} |
Bill to: General Customer | {{--TRN: , 12346756567676 | --}}
Item Description | Price | Quantity | Discount | Vat | Total |
---|---|---|---|---|---|
{{ ($order_item->product_name) ? $order_item->product_name : '' }} | {{number_format($order_item->price ,$decimal_point)}} | {{ $order_item->quantity }} | {{ $order_item->discount_amt }} | {{ number_format($order_item->item_tax_amt, $decimal_point) }} | {{ number_format($order_item->quantity * $order_item->price,$decimal_point) }} |
{{ $total_quantitny }} | {{ number_format($discount_amt,$decimal_point)}} | {{ number_format($tax_amt,$decimal_point)}} | {{ number_format($total,$decimal_point)}} | ||
Sub Total | {{ number_format($total,$decimal_point) }} | ||
Discount | {{ number_format($discount_amt,$decimal_point) }} | ||
Total Tax | {{ number_format($tax_amt,$decimal_point) }} | ||
Total | {{ number_format(($total - $discount_amt) + $tax_amt, $decimal_point) }} |
Cash | {{ number_format(($cash_amount - $discount_amt),$decimal_point) }} | ||
{{ $other_name }} | {{ number_format(($cash_amount - $discount_amt),$decimal_point) }} | ||
1/1 |