| Total Amount : |
@php
$item_price_total = $data['transaction']['item_price_total'];
$gst_amount = $data['transaction']['sgst_amount'] + $data['transaction']['cgst_amount'] + $data['transaction']['igst_amount'];
if ($data['transaction']['dynamic_late_id'] != 0){
$item_price_total = $item_price_total + $data['transaction']['late_fee_item']['item_price_total'];
$gst_amount = $gst_amount + $data['transaction']['late_fee_item']['sgst_amount'] + $data['transaction']['late_fee_item']['cgst_amount'] + $data['transaction']['late_fee_item']['igst_amount'];
}
@endphp
{{ number_format( $item_price_total, 2)}} |
| GST : |
{{ number_format($gst_amount, 2) }} |
@if ($data['transaction']['previous_credit_note_amount'] > 0)
| Less Credit Note Amount : |
{{ number_format($data['transaction']['previous_credit_note_amount'], 2) }} |
@endif
@if ($data['transaction']['adjust_amount'] < 0)
| Less :- Credit Balance Adjustable : |
{{ number_format($data['transaction']['adjust_amount'], 2) }} |
| Add :- Debit Balance Adjustable : |
0.00 |
@elseif ($data['transaction']['adjust_amount'] > 0)
| Less :- Cr.Balance Adjustable : |
0.00 |
| Add :- Dr.Balance Adjustable : |
{{ number_format($data['transaction']['adjust_amount'], 2) }} |
@else
| Less :- Cr.Balance Adjustable : |
0.00 |
| Add :- Dr.Balance Adjustable : |
0.00 |
@endif
| Net Payable Amount : |
@if ($data['transaction']['payable_amount']==0 || $data['transaction']['payable_amount'] < 0)
0.00 |
@else
{{ number_format($data['transaction']['payable_amount'], 2) }} |
@endif
@if ($data['transaction']['payable_amount'] < 0)
| You will get refund in the same bank details from which you have Purchased. | Refund Amount : |
{{ number_format(abs($data['transaction']['payable_amount']),2) }} |
@endif