@extends('member.layout') @section('title', 'My Loans') @section('content')
Manage your loan applications and payments
Total Loans
{{ $loans->count() }}
Active Loans
{{ $loans->whereIn('status', ['approved', 'active'])->count() }}
Pending
{{ $loans->where('status', 'pending')->count() }}
Total Amount
KSh {{ number_format($loans->sum('amount'), 0) }}
{{ $loan->created_at->format('M d, Y') }}
Principal
KSh {{ number_format($loan->amount, 0) }}
Interest
{{ $loan->interest_rate }}%
Monthly
KSh {{ number_format($loan->monthly_payment, 0) }}
Term
{{ $loan->term_months }}m
Paid: KSh {{ number_format($loan->paid_amount, 0) }} of KSh {{ number_format($loan->total_amount, 0) }}
You haven't applied for any loans yet. Start your financial journey with us!
Apply for Your First Loan