@extends('admin.layout') @section('title', 'Dashboard') @section('content')

Company Verifications

Review and manage company verification requests

{{-- Stats --}}
@foreach(['all' => ['All', 'bg-gray-100 text-gray-800'], 'pending' => ['Pending', 'bg-yellow-100 text-yellow-800'], 'verified' => ['Verified', 'bg-green-100 text-green-800'], 'rejected' => ['Rejected', 'bg-red-100 text-red-800']] as $key => [$label, $style])
{{ $counts[$key] }}
{{ $label }}
@endforeach
{{-- Table --}}
@if($verifications->isEmpty())
No verification requests yet.
@else @foreach($verifications as $v) @endforeach
# User Company Submitted Status
{{ $v->id }}
{{ $v->user_name }}
{{ $v->user_email }}
{{ $v->company_name }} {{ $v->created_at->format('d M Y') }} @if($v->status === 'pending') Pending @elseif($v->status === 'verified') Verified @else Rejected @endif Review →
{{ $verifications->links() }}
@endif
@endsection