@extends('layouts.app') @section('title', 'Profiles Report') @section('breadcrumb') Dashboard Reports Profiles @endsection @section('content') @include('partials._report-tabs')
all
Total profiles
{{ number_format($stats['total']) }}
QUEUED
Pending review
{{ number_format($stats['pending']) }}
verified
Approved
{{ number_format($stats['approved']) }}
{{ $stats['rejected'] }}
Rejected
{{ number_format($stats['rejected']) }}
@include('partials._report-filter', ['exportType' => 'profiles']) @include('partials._report-cap-banner')
All profiles
{{ $profiles->count() }} record(s) total
@if($profiles->isEmpty())
No profiles submitted
Candidate profiles will appear here once submitted for review.
@else
@foreach($profiles as $profile) @php $status = strtolower($profile->status_label ?? ''); $pillTone = 's-neutral'; if (str_contains($status, 'approv')) $pillTone = 's-success'; elseif (str_contains($status, 'reject')) $pillTone = 's-danger'; elseif (str_contains($status, 'pend')) $pillTone = 's-warning'; @endphp @endforeach
# Candidate CNIC Gender Status Submitted  
{{ $loop->iteration }}
{{ $profile->user?->name }}
{{ $profile->user?->email }}
{{ $profile->cnic }} {{ ucfirst($profile->gender ?? '—') }} {{ $profile->status_label }} {{ $profile->created_at->format('d M Y') }}
@endif
@endsection @push('scripts') @endpush