@extends('layouts.admin-sidebar') @section('title', 'KYC Management') @section('page-title', 'KYC Management') @section('page-description', 'Review and manage user identity verification requests') @section('content')
Analytics

Total

{{ number_format($stats['total']) }}

Pending

{{ number_format($stats['pending']) }}

Verified

{{ number_format($stats['verified']) }}

Failed

{{ number_format($stats['failed']) }}

Expired

{{ number_format($stats['expired']) }}

@if($kycVerifications->where('status', 'pending')->count() > 0)
@endif

KYC Verifications ({{ $kycVerifications->total() }})

@if($kycVerifications->count() > 0)
@if($kycVerifications->where('status', 'pending')->count() > 0) @endif @foreach($kycVerifications as $kyc) @if($kyc->status === 'pending') @elseif($kycVerifications->where('status', 'pending')->count() > 0) @endif @endforeach
User Type Status Submitted Provider Actions
{{ strtoupper(substr($kyc->user->first_name, 0, 1) . substr($kyc->user->last_name, 0, 1)) }}
{{ $kyc->user->full_name }}
{{ $kyc->user->email }}
{{ strtoupper($kyc->type) }} @if($kyc->status === 'pending') Pending @elseif($kyc->status === 'verified') Verified @elseif($kyc->status === 'failed') Failed @else Expired @endif
{{ $kyc->created_at->format('M d, Y') }}
{{ $kyc->created_at->format('H:i') }}
{{ $kyc->provider ?: 'Manual' }} View @if($kyc->document_path) Download @endif
{{ $kycVerifications->links() }}
@else

No KYC verifications found

No KYC verifications match your current filters.

@endif
@endsection