Full Name | Gender | Phone | ID Number | Location |
---|---|---|---|---|
{{ $loan->individualClient->client->fullname }} | {{ $loan->individualClient->client->gender }} | {{ $loan->individualClient->client->phone }} | {{ $loan->individualClient->client->idnumber }} | {{ $loan->individualClient->client->location }} |
{{ $groupClient->client->fullname }} | {{ $groupClient->client->gender }} | {{ $groupClient->client->phone }} | {{ $groupClient->client->idnumber }} | {{ $groupClient->client->location }} |
# | Date | Amount | Principal Paid | Interest Paid | Balance | Status |
---|---|---|---|---|---|---|
{{ $index + 1 }} | {{ $schedule->date?->format('d M, Y') ?? 'N/A' }} | {{ formatAmount($schedule->amount) }} | {{ formatAmount($schedule->principal_paid) }} | {{ formatAmount($schedule->interest_paid) }} | {{ formatAmount($schedule->balance) }} | {{ ucfirst($schedule->status) }} |
TOTALS | {{ formatAmount($loan->repaymentSchedules->sum('amount')) }} | {{ formatAmount($loan->repaymentSchedules->sum('principal_paid')) }} | {{ formatAmount($loan->repaymentSchedules->sum('interest_paid')) }} | {{ formatAmount($loan->repaymentSchedules->sum('balance')) }} | - |
Date | Type | Amount | Status |
---|---|---|---|
{{ $penalty->created_at?->format('d M, Y') ?? 'N/A' }} | {{ $penalty->type ?? 'Late Payment' }} | {{ formatAmount($penalty->amount) }} | {{ ucfirst($penalty->status ?? 'pending') }} |
TOTAL PENALTIES | {{ formatAmount($loan->penalties->sum('amount')) }} | - |
# | Payment Date | Amount | Payment Method | Reference | Processed By | Date Recorded |
---|---|---|---|---|---|---|
{{ $index + 1 }} | {{ Carbon\Carbon::parse($deposit->deposit_date)?->format('d M, Y') ?? 'N/A' }} | {{ formatAmount($deposit->amount) }} | {{ $deposit->payment_method ?? 'Cash' }} | {{ $deposit->reference_number ?? '-' }} | {{ $deposit->createdBy->fullname ?? 'System' }} | {{ $deposit->created_at?->format('d M, Y H:i') ?? 'N/A' }} |
TOTAL PAYMENTS | {{ formatAmount($loan->loanDeposits->sum('amount')) }} | {{ $loan->loanDeposits->count() }} payment(s) |
# | Payment Date | Penalty Type | Amount Paid | Processed By | Date Recorded |
---|---|---|---|---|---|
{{ $index + 1 }} | {{ Carbon\Carbon::parse($penaltyPayment->date)?->format('d M, Y') ?? 'N/A' }} | {{ $penaltyPayment->penalty->loanProductPenalty->name ?? 'Penalty Payment' }} | {{ formatAmount($penaltyPayment->amount) }} | {{ $penaltyPayment->createdBy->fullname ?? 'System' }} | {{ $penaltyPayment->created_at?->format('d M, Y H:i') ?? 'N/A' }} |
TOTAL PENALTY PAYMENTS | {{ formatAmount($loan->penaltyPayments->sum('amount')) }} | {{ $loan->penaltyPayments->count() }} payment(s) |