@extends('layouts.app') @section('content')
Review applications, manage approvals and monitor active loans.
| Loan | Client | Loan Amount | Charges | EMI | Tenure | Outstanding | Status | Applied | Action |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $loan->loan_number }}
Card: {{ $loan->emiCard->card_number ?? '—' }}
|
{{ $initial }}
{{ $clientName }}
{{ $loan->user->mobile ?? $loan->user->email ?? '—' }}
|
₹{{ number_format((float)$loan->loan_amount,2) }}
Total: ₹{{ number_format((float)$loan->total_payable,2) }}
|
{{ number_format((float)$loan->interest_rate,2) }}% Interest
Fee: ₹{{ number_format((float)$loan->processing_fee,2) }}
|
₹{{ number_format((float)$loan->emi_amount,2) }}
Monthly
|
{{ $loan->tenure_months }}
months
|
₹{{ number_format((float)$loan->outstanding_amount,2) }} |
{{ ucfirst($loan->status) }} |
{{ optional($loan->applied_at)->format('d M Y') ?? optional($loan->created_at)->format('d M Y') }}
{{ optional($loan->created_at)->format('h:i A') }}
|
↗
@if($loan->status === 'pending')
@elseif($loan->status === 'approved')
@endif
|