@foreach ($accountingVouchers as $accountingVoucher)
|
Voucher Details
Voucher No : {{ $accountingVoucher->voucher_number }}
Date : {{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}
|
| Particulars | Debit | Credit |
|---|---|---|
| {{ $accountingVoucherLedger->ledger->name }} | {{ $accountingVoucherLedger->dr_or_cr == 'Dr' ? $accountingVoucherLedger->amount : '' }} | {{ $accountingVoucherLedger->dr_or_cr == 'Cr' ? $accountingVoucherLedger->amount : '' }} |
|
Received From
@if($accountingVoucher->customer != null) {{ $accountingVoucher->customer->name }} @else {{ $accountingVoucher->creditLedger->name }} @endif
@if($accountingVoucher->customer != null) {{ $accountingVoucher->customer->mobile }} @else {{ $accountingVoucher->creditLedger->mobile_no }} @endif
{{ $accountingVoucher->creditLedger->address }}
GST No : {{ $accountingVoucher->creditLedger->gst }}
|
Voucher Details
Voucher No : {{ $accountingVoucher->voucher_number }}
Date :
{{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}
|
|
Amount : {{ $accountingVoucher->amount }}
@if ($company->show_outstanding)
@if($accountingVoucher->is_double_entry != 1)
Previous Balance : {{ $accountingVoucher->previousBalance }}
{{ $accountingVoucher->previousBalanceDrCr }}
Today Summary
@foreach ($accountingVoucher->todayVouchers as $todayVoucher)
{{ $todayVoucher->voucher_number }} - ({{ $todayVoucher->voucherType->name }}) : {{ $todayVoucher->amount }}
@endforeach
Closing Balance : {{ $accountingVoucher->totalOutstanding }} {{ $accountingVoucher->totalOutstandingDrCr }}
@endif
@endif
Remarks : {{ $accountingVoucher->remarks }}
|
|
{{ $company->name }}
Authorized Signature
|