Morio Sacco

Society Limited

Loan Payment Schedule

Member Information

Member Name:
{{ $loan->user->full_name }}
Membership ID:
{{ $loan->user->membership->membership_number ?? 'N/A' }}
ID Number:
{{ $loan->user->id_number }}
Phone Number:
{{ $loan->user->phone_number }}
Email Address:
{{ $loan->user->email }}
Branch:
{{ $loan->user->branch->name ?? 'N/A' }}
Application Date:
{{ $loan->created_at->format('d M Y') }}
Approval Date:
{{ $loan->approved_at ? $loan->approved_at->format('d M Y') : 'Not Approved' }}

Loan Summary

Loan Amount
Interest Rate
Term
Total Amount
KSh {{ number_format($loan->amount, 2) }}
{{ $loan->interest_rate }}%
{{ $loan->term_months }} Months
KSh {{ number_format($loan->total_amount, 2) }}
Monthly Payment
Total Interest
Status
Loan ID
KSh {{ number_format($loan->monthly_payment, 2) }}
KSh {{ number_format($loan->total_amount - $loan->amount, 2) }}
{{ ucfirst($loan->status) }}
{{ $loan->id }}

Important Payment Information

Monthly Payment Schedule

@foreach($scheduleData as $payment) @endforeach
Month Due Date Payment Amount Principal Interest Remaining Balance
{{ $payment['month'] }} {{ $payment['due_date'] }} KSh {{ number_format($payment['payment'], 2) }} KSh {{ number_format($payment['principal'], 2) }} KSh {{ number_format($payment['interest'], 2) }} KSh {{ number_format($payment['balance'], 2) }}
TOTALS: KSh {{ number_format($loan->total_amount, 2) }} KSh {{ number_format($loan->amount, 2) }} KSh {{ number_format($loan->total_amount - $loan->amount, 2) }} KSh 0.00