@extends('layouts.admin') @section('title', 'User KYC Approvals') @section('page-title', 'User KYC Approvals') @section('content')
User KYC Verification Requests
{{ $kycRequests->total() }} Pending
@if($kycRequests->isEmpty())
No Pending KYC Requests

All user KYC requests have been processed.

@else
@foreach($kycRequests as $kyc) @endforeach
# User Submitted On Documents Status Actions
{{ $kyc->id }}
{{ strtoupper(substr($kyc->user->name, 0, 1)) }}
{{ $kyc->user->name }}
{{ $kyc->user->email }}
{{ $kyc->user->mobile }}
{{ $kyc->created_at->format('M j, Y H:i') }} Pending Review
Showing {{ $kycRequests->firstItem() }} to {{ $kycRequests->lastItem() }} of {{ $kycRequests->total() }} requests
{{ $kycRequests->links() }}
@endif
@endsection @push('scripts') @endpush