@extends('adminlte::page') @section('title', 'Loans Management') @section('content_header')
| ID | Member | Amount | Rate | Term | Total | Monthly | Status | Applied | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loan->id }} |
{{ Str::limit($loan->user->full_name ?? 'N/A', 18) }}
|
KSh {{ number_format($loan->amount, 0) }} | {{ $loan->interest_rate }}% | {{ $loan->term_months }}m | KSh {{ number_format($loan->total_amount, 0) }} | KSh {{ number_format($loan->monthly_payment, 0) }} | {{ ucfirst($loan->status) }} | {{ $loan->created_at->format('d M') }} | |