@extends('layouts.recruitment') @section('content')

Applicants Management

Review and process teacher applications across all departments.

Total Applicants
{{ $stats['total'] }}
Shortlisted
{{ $stats['shortlisted'] }}
In Screening
{{ $applicants->where('current_stage', 'Phone Screening')->count() }}
Success Rate
12%

All Applicants List

@forelse($applicants as $applicant) @php $latestApp = $applicant->applications->first(); @endphp @empty @endforelse
Applicant Info Position & Dept Type Stage Status Submission Action
Avatar
{{ $applicant->full_name }}
{{ $applicant->email }}
{{ $latestApp->jobOpening->position->title ?? 'N/A' }}
{{ $latestApp->jobOpening->position->department->name ?? 'General' }}
@if($applicant->applicant_type === 'current_teacher') Staff Reapp @else New App @endif {{ $latestApp->current_stage ?? 'Pending' }} {{ $applicant->created_at->format('M d, Y') }} Review Details

No applicants found

Try adjusting your filters or search terms.

Showing {{ $applicants->firstItem() }} to {{ $applicants->lastItem() }} of {{ $applicants->total() }} applicants
{{ $applicants->links() }}
@endsection