@extends('backend.master') @section('title','Loan Admin – Dashboard') @push('styles') @endpush @section('content')
| User | Total Loans | Running | Completed (Paid) |
|---|---|---|---|
| {{ $u->name }} {{ $u->email }} |
{{ $u->total_loans }} | {{ $u->running_loans }} | {{ $u->completed_loans }} |
| No users with loans. | |||
| Installment | User | Loan | Amount | Method / Trx | Submitted | Action |
|---|---|---|---|---|---|---|
| #{{ $ins->id }} | {{ $ins->loan->user->name }} | #{{ $ins->loan_id }} | ৳ {{ number_format($ins->paid_amount ?? $ins->amount) }} | {{ strtoupper($ins->payment_method ?? '-') }} / {{ $ins->payment_trx_id ?? '-' }} | {{ optional($ins->paid_at)->format('d M Y, h:i A') ?? $ins->created_at->format('d M Y, h:i A') }} | |
| No pending submissions. | ||||||