{{__('lang.receipt_vouchers')}} |
@foreach($headings as $heading)
{{$heading}} |
@endforeach
@foreach($receipts as $receipt)
@php
$total_receipt_amount += $receipt->actual_amount;
@endphp
{{$loop->iteration ?? '-'}} |
{{$receipt->receipt_no ?? '-'}} |
{{$receipt->particulars ?? '-'}} |
{{$transaction->convert_money_format($receipt->actual_amount)}} |
@endforeach
{{__('lang.total')}} |
{{$transaction->convert_money_format($total_receipt_amount) }} |
|
{{__('lang.payment_vouchers')}} |
@foreach($headings as $heading)
{{$heading}} |
@endforeach
@foreach($payment_vouchers as $payment_voucher)
@php
$total_payment_voucher_amount += $payment_voucher->amount;
@endphp
{{$loop->iteration ?? '-'}} |
{{$payment_voucher->pv_no ?? '-'}} |
{{$payment_voucher->particulars ?? '-'}} |
{{$transaction->convert_money_format($payment_voucher->amount) }} |
@endforeach
{{__('lang.total')}} |
{{$transaction->convert_money_format($total_payment_voucher_amount) }} |
|