@extends('admin.dashboard') @section('verification-content')
Review and manage KYC verification documents submitted by organizations.
| Organization | Documents | Submitted | Status | Actions |
|---|---|---|---|---|
|
{{ $organization->name }}
{{ $organization->email }}
|
{{ $organization->kycDocuments->count() }} Documents
|
@if($organization->kycDocuments->isNotEmpty())
{{ $organization->kycDocuments->sortByDesc('created_at')->first()->created_at->format('M d, Y') }}
{{ $organization->kycDocuments->sortByDesc('created_at')->first()->created_at->format('h:i A') }}
@else
No documents
@endif
|
@php $pendingCount = $organization->kycDocuments->where('is_verified', false)->count(); $totalCount = $organization->kycDocuments->count(); @endphp @if($pendingCount === 0 && $totalCount > 0) Approved @elseif($pendingCount > 0) Pending ({{ $pendingCount }}/{{ $totalCount }}) @else No Documents @endif |
View Documents
@if($organization->kycDocuments->where('is_verified', false)->count() > 0)
@endif
|
| No organizations found. | ||||