@extends('admin.layouts.app') @section('title', 'Clients | PG Finsev') @section('page-title', 'Clients') @section( 'page-description', 'Manage registered clients and their application status' ) @push('styles') @endpush @section('content')

Client Management

View and manage all registered PG Finsev clients.

Total Clients
{{ $totalClients ?? $clients->total() }}
KYC Verified
{{ $verifiedKyc ?? 0 }}
Pending KYC
{{ $pendingKyc ?? 0 }}
KYC Rejected
{{ $rejectedKyc ?? 0 }}
Search Clients
Reset

Registered Clients

Showing {{ $clients->firstItem() ?? 0 }} - {{ $clients->lastItem() ?? 0 }} of {{ $clients->total() }}
@if($clients->count()) @foreach($clients as $client) @php $kyc = $client->clientKyc; $profile = $client->clientProfile; @endphp @endforeach
Client Mobile KYC Application Registered Action
{{ strtoupper( substr( $client->name, 0, 1 ) ) }}
{{ $client->name }} {{ $client->email }}
{{ $client->mobile ?? '-' }} @if( $kyc && $kyc->status === 'verified' ) Verified @elseif( $kyc && $kyc->status === 'rejected' ) Rejected @elseif($kyc) Pending @else Not Submitted @endif @if($profile) Started @else Not Started @endif {{ $client->created_at ? $client->created_at ->format('d M Y') : '-' }}
@else
No clients found.
@endif
@if($clients->hasPages())
Page {{ $clients->currentPage() }} of {{ $clients->lastPage() }}
{{ $clients->onEachSide(1)->links() }}
@endif
@endsection