@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')
View and manage all registered PG Finsev clients.
| 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') : '-' }} |