Voucher No:
{{ $journal->reference }}
Date:
{{ \Carbon\Carbon::parse($journal->transaction_date)->format('d/m/Y') }}
Name:
{{ $member->full_name ?? $member->name ?? '-' }}
Branch:
{{ $journal->branch->branch_name ?? $journal->branch->name ?? '-' }}
Description:
{{ $journal->description }}
Processed By:
{{ $journal->user->name ?? 'System' }}
| Account |
Sub Account |
Description |
Debit |
@php
$entry = $journal->entries->first();
@endphp
@if($entry)
| {{ $entry->account->account_code ?? '' }} - {{ $entry->account->account_name ?? '' }} |
{{ $entry->subAccount->sub_account_code ?? '-' }} {{ $entry->subAccount->sub_account_name ?? '' }} |
{{ $entry->description }} |
{{ number_format($entry->debit, 2) }} |
@endif
@if($entry)
| Total |
{{ number_format($entry->debit, 2) }} |
@endif
Amount in Words:
{{ amount_in_words($entry->debit) }} Only
Note: This voucher confirms the disbursement of loan funds.
The borrower acknowledges receipt of the disbursed amount.