@extends('admin.layouts.app') @section('title', 'PG Finsev | Admin Dashboard') @section('page-title', 'Admin Dashboard') @section('page-description') Welcome back, {{ Auth::user()->name }} @endsection @push('styles') @endpush @section('content')
Monitor clients, applications, KYC verification and payments.
| Loan | Client | Amount | Status | Action |
|---|---|---|---|---|
| {{ $loan->loan_number }} | {{ $loan->user->name ?? 'Unknown' }} | โน{{ number_format((float) $loan->loan_amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $loan->status)) }} | View |
| No loans found. | ||||
| Client | Mobile | Registered | KYC | Action |
|---|---|---|---|---|
|
{{ $initial }}
{{ $client->name }}
{{ $client->email }}
|
{{ $client->mobile ?? '-' }} | {{ $client->created_at ? $client->created_at ->format('d M Y') : '-' }} | @if( $kyc && $kyc->status === 'verified' ) Verified @elseif( $kyc && $kyc->status === 'rejected' ) Rejected @elseif($kyc) Pending @else Not Submitted @endif | View |
| No clients found. | ||||
| Client | KYC | Date |
|---|---|---|
|
{{
strtoupper(
substr(
$application->name,
0,
1
)
)
}}
{{
$application->name
}}
{{
$application->email
}}
|
@if( $application->clientKyc && $application->clientKyc->status === 'verified' ) Verified @elseif( $application->clientKyc && $application->clientKyc->status === 'rejected' ) Rejected @elseif( $application->clientKyc ) Pending @else Not Submitted @endif | {{ $application->created_at ? $application->created_at ->format('d M Y') : '-' }} |
| No applications found. | ||
| Client | Amount | Status |
|---|---|---|
| {{ $payment->user->name ?? 'Unknown' }} | โน{{ number_format( $payment->amount ?? 0, 2 ) }} | @if( $payment->status === 'paid' ) Paid @elseif( $payment->status === 'pending' ) Pending @elseif( $payment->status === 'failed' ) Failed @else {{ ucfirst( $payment->status ) }} @endif |
| No payments found. | ||