@extends('layouts.app') @section('title', 'Partner Dashboard') @section('content')
Here's what's happening with your loans today
Total Disbursed Amount
Create New LoanTotal Collected
Disbursed this month
| Loan # | Customer | Scheme | Amount | Status | Date |
|---|---|---|---|---|---|
| {{ $loan->loan_number }} |
{{ substr($loan->customer->name, 0, 1) }}
{{ $loan->customer->name }}
|
{{ $loan->loanScheme?->name ?? $loan->scheme?->name ?? 'N/A' }} | ₹{{ number_format($loan->principal_amount) }} | {{ ucfirst($loan->status) }} | {{ $loan->disbursement_date->format('d M Y') }} |
|
No loans yet Create First Loan |
|||||