@extends('layouts.app') @section('title', 'Loan Management') @section('content') @use('App\Enums\AdminRoles')
Manage all loan activities across the platform
Total Active Loans
Loans Due This Week
Defaulted Loans
Pending Approvals
| Loan ID | Borrow Name | Loan Type | Amount | Repayment Mode | Start Date | End Date | Status |
|---|---|---|---|---|---|---|---|
| {{ $loan->loan_no }} | {{ $loan->user->fullname }} | {{ strtoupper($loan->loanApplication?->loan_type) }} | N{{ number_format($loan->principal_amount, 2) }} | {{ ucwords($loan->repayment_mode) }} | {{ $loan->disbursed_at->format('d, M Y') }} | {{ $loan->due_date->format('d, M Y') }} | @if ($loan->status == 'active') @elseif ($loan->status == 'completed') @else @endif |