@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 : '' }} |
| {{ $accountingVoucher->debitLedger->name }} A/C | {{ $accountingVoucher->amount }} | |
| To {{ $accountingVoucher->creditLedger->name }} | {{ $accountingVoucher->amount }} |
|
{{ $company->name }}
Authorized Signature
|