Request Verification

This page allows administrators to view and manage all user verification requests, including those pending, approved, or rejected. Administrators can review detailed user data that requires verification, and take action using date filter.

Total

{{ number_format($totalReqverify) }}

Pending

{{ $pendingCount }}

Approved

{{ $ApproveCount }}

Requests

@foreach ($reqverify['pending'] ?? [] as $i => $a) @endforeach
No Name Date Time Status Action
{{ $i + 1 }}. {{ $a->user->fullname ?? '-'}} {{ \Carbon\Carbon::parse($a->date)->format('d-m-Y') }} {{ $a->start_at }}
{{ $a->status }}
@foreach ($reqverify['approved'] ?? [] as $i => $a) @endforeach
No Name Date Time Notes Status Action
{{ $i + 1 }}. {{ $a->user->fullname }} {{ \Carbon\Carbon::parse($a->date)->format('d-m-Y') }} {{ $a->start_at }} {{ $a->notes }}
{{ $a->status }}
@foreach ($reqverify['cancelled'] ?? [] as $i => $a) @endforeach
No Name Date Time Notes Status Action
{{ $i + 1 }}. {{ $a->user->fullname }} {{ \Carbon\Carbon::parse($a->date)->format('d-m-Y') }} {{ $a->notes }} {{ $a->start_at }}
{{ $a->status }}