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

Principal Balance: ₦{{number_format($principal_balance,2)}}

Outstanding Amount (Loan and Penalty Outstanding): ₦{{number_format($outstanding_amount + $penalty_balance,2)}}

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

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

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

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

Penalty Paid: ₦{{number_format($penalty_paid,2)}}

Penalty Outstanding: ₦{{number_format($penalty_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)}}


Repayment Transactions
Details of how you've made payment for this loan

@foreach ($transaction_history as $schedule) @endforeach
Date Category Type Narration Amount
{{\Carbon\Carbon::parse($schedule["value_date"])->format('d/m/Y')}} {{$schedule["outstanding_type"]}} {{$schedule["transaction_type"]}} LOAN REPAYMENT ₦{{number_format($schedule["amount"],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