Loan Statement

Account Information

Customer Name: {{$customer_name}}

Loan Amount: ₦{{number_format($loan_amount,2)}}

Duration: {{$duration}} Months

Monthly Repayment: ₦{{number_format($monthly_repayment,2)}}

Loan Released Date: {{$start_date}}

Maturity Date: {{$end_date}}

Account Summary

Penalty Accrued: ₦{{number_format($penalty_accrued,2)}}

Total Paid: ₦{{number_format($total_paid,2)}}

Outstanding Amount: ₦{{number_format($outstanding_amount,2)}}

Loan Balance: ₦{{number_format($loan_balance,2)}}

Repayment Schedule
Repayment details, including due dates, installment amounts, principal and interest,

@foreach ($repayment_schedule as $schedule) @endforeach
Repayment Date Principal Due Interest Due Fees Due Total Due
{{\Carbon\Carbon::parse($schedule["repayment_date"])->format('d/m/Y') }} {{number_format($schedule["principal"],2)}} {{number_format($schedule["interest"],2)}} {{number_format($schedule["fees"],2)}} ₦{{number_format($schedule["total_due"],2)}}

@if ($penalty_charges)

Penalty Transactions
How we've charged you penalty fees charged for late or missed payments and how they have been paid, including the date of payment and the amount paid

@foreach ($penalty_charges as $schedule) @endforeach
Date Narration Transaction Type Amount
{{\Carbon\Carbon::parse($schedule["transaction_date"])->format('d/m/Y')}} {{$schedule["narration"]}} {{$schedule["transaction_type"]}} ₦{{number_format($schedule["amount"],2)}}

@endif