{{ $loan->product ?? $loan->loanProduct->product ?? 'Loan' }}
Loan #{{ $loan->loannumber ?? $loan->loanid }}
ZMW {{ number_format($loan->amount, 2) }}
Original Loan Amount
Loan Details
Loan Amount
ZMW {{ number_format($loan->amount, 2) }}
Interest Rate
{{ $loan->rate }}%
Duration
{{ $loan->duration }} months
Loan Product
{{ $loan->loanProduct->product ?? $loan->product ?? 'N/A' }}
Disbursed Date
@if($loan->disburseddate) {{ \Carbon\Carbon::parse($loan->disburseddate)->format('M d, Y') }} @else Not disbursed @endif
Maturity Date
@if($loan->maturitydate) {{ \Carbon\Carbon::parse($loan->maturitydate)->format('M d, Y') }} @else N/A @endif
Loan Status
{{ $loan->status }}
Application Number
{{ $loan->applicationno ?? 'N/A' }}
Collection Progress
Repayment History
All your repayment transactions
{{ $repayment->rdate->format('M d, Y') }}
{{ $repayment->pmethod ?? 'Payment' }} • {{ $repayment->transtype ?? 'repayment' }}
Transaction ID: {{ $repayment->rpid ?? 'N/A' }}
ZMW {{ number_format($repayment->rtotal, 2) }}
Showing latest 10 repayments
No repayment history found
Your repayment transactions will appear here once you start making payments.
Interest Charges
Interest applied to your loan
Interest Charge
{{ $interest->chargeddate->format('M d, Y') }}
Charge ID: {{ $interest->ipid ?? 'N/A' }}
ZMW {{ number_format($interest->charge, 2) }}
Applied on {{ $interest->chargeddate->format('M d, Y') }}
No interest charges recorded
Quick Actions
Loan Information
Loan Number
{{ $loan->loannumber ?? $loan->loanid }}
Application Number
{{ $loan->applicationno ?? 'N/A' }}
Status
{{ $loan->status }}
Branch
{{ $loan->branchid ? 'Branch ' . $loan->branchid : 'N/A' }}
Created Date
@if($loan->created_at) {{ $loan->created_at->format('M d, Y') }} @else N/A @endif
Payment Summary
Next Payment
Due Date
{{ $loan->next_payment_due_date->format('M d, Y') }}
@if($loan->is_overdue) Payment is overdue @else {{ $loan->next_payment_due_date->diffForHumans() }} @endif
Loan Performance
Key metrics and performance indicators
Collection Rate
{{ $collectionProgress }}%
Monthly Payment
ZMW {{ number_format($loan->estimated_monthly_payment ?? ($totalRepayment / $loan->duration), 2) }}
Months Remaining
@php $monthsRemaining = max(0, $loan->duration - ($loan->total_repaid / ($totalRepayment / $loan->duration))); @endphp {{ round($monthsRemaining) }}
Interest Rate
{{ $loan->rate }}%