@extends('admin.layouts.app') @section('title', 'KYC Verification | EMI CREDITS') @section('page-title', 'KYC Verification') @section( 'page-description', 'Review, verify and manage client KYC documents' ) @push('styles') @endpush @section('content')
Review client identity documents and verify KYC submissions.
| Client | Mobile | Documents | Status | Submitted | Action |
|---|---|---|---|---|---|
|
{{
strtoupper(
substr(
$client->name ?? 'C',
0,
1
)
)
}}
{{ $client->name }}
{{ $client->email }}
|
{{ $client->mobile ?? '-' }} | @if($kyc) @else — @endif | @if( $kyc && $kyc->status === 'verified' ) Verified @elseif( $kyc && $kyc->status === 'rejected' ) Rejected @elseif($kyc) Pending @else Not Submitted @endif | @if($kyc && $kyc->created_at) {{ $kyc->created_at->format('d M Y') }} @else — @endif |
View
@if(
$kyc &&
$kyc->status !== 'verified'
)
@endif
@if(
$kyc &&
$kyc->status !== 'rejected'
)
@endif
|