@extends('layouts.admin') @section('title', 'Verification') @section('content')

{{ $requests->total() }} {{ Str::plural('request', $requests->total()) }}

$currentStatus === '', 'pill-idle' => $currentStatus !== ''])> Awaiting review {{ ($counts['submitted'] ?? 0) + ($counts['under_review'] ?? 0) }} $currentStatus === 'all', 'pill-idle' => $currentStatus !== 'all'])> All {{ $counts->sum() }} @foreach ($statuses as $value => $label) @continue(! $counts->has($value)) $currentStatus === $value, 'pill-idle' => $currentStatus !== $value])> {{ $label }} {{ $counts[$value] }} @endforeach
@if ($requests->isEmpty()) @else
@foreach ($requests as $verification) @endforeach
Claimant Type Documents Submitted Status Actions
{{ $verification->legal_name ?: $verification->subjectLabel() }} {{ $verification->user->email }} {{ $verification->type->label() }} {{ $verification->documents_count }} @if (! $verification->isComplete()) (incomplete) @endif {{ $verification->created_at->format('d M Y') }} {{ $verification->status->label() }} Review
{{ $requests->links() }}
@endif @endsection