{{ config('settings.company_name') }}
{{ config('settings.address_1') }}
{{ $heading }}
@foreach($headings as $heading) @endforeach @foreach($receipts as $receipt) @php $total_receipt_amount += $receipt->actual_amount; @endphp @endforeach

{{__('lang.receipt_vouchers')}}

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

{{__('lang.payment_vouchers')}}

{{$heading}}
{{$loop->iteration ?? '-'}} {{$payment_voucher->pv_no ?? '-'}} {{$payment_voucher->particulars ?? '-'}} {{$transaction->convert_money_format($payment_voucher->amount) }}
{{__('lang.total')}} {{$transaction->convert_money_format($total_payment_voucher_amount) }}
{{__('lang.total_receipt_amount')}}: {{$transaction->convert_money_format($total_receipt_amount)}}
{{__('lang.total_payment_voucher_amount')}}: {{$transaction->convert_money_format($total_payment_voucher_amount)}}
B{{__('lang.balance_amount')}}: {{$transaction->convert_money_format($total_receipt_amount - $total_payment_voucher_amount)}}