Client:
{{ $loan->client->first_name }} {{ $loan->client->last_name }} ({{ $loan->client->client_number }})
Loan Number:
{{ $loan->loan_number }}
Loan Amount:
${{ number_format($loan->amount, 2) }}
Outstanding Balance:
${{ number_format($loan->outstanding_balance, 2) }}
Interest Rate:
{{ $loan->interest_rate }}%
Loan Term:
{{ $loan->duration_months }} months
Monthly Payment:
${{ number_format($loan->monthly_payment, 2) }}
Total Repayment:
${{ number_format($loan->total_repayment, 2) }}
Application Date:
{{ $loan->application_date->format('M d, Y') }}
Loan Type:
{{ ucfirst($loan->loan_type) }}
Purpose:
{{ $loan->purpose }}
Status:
{{ ucfirst($loan->status) }}