@extends('layouts.app') @section('title','Applicant Database') @section('page-title','Recruitment') @section('content') {{-- Filters --}}
{{ $applicants->total() }} Applicants
@forelse($applicants as $app) @empty @endforelse
Applicant Qualification Experience Applications Status Actions
{{ $app->full_name }}
{{ $app->applicant_number }} · {{ $app->email }}
{{ $app->qualification_label ?: '—' }} {{ $app->years_of_experience }} yr{{ $app->years_of_experience!=1?'s':'' }} {{ $app->applications->count() }} @if($app->employee_id) Hired @else In Pool @endif
No applicants found.
@if($applicants->hasPages())
{{ $applicants->links('pagination::bootstrap-5') }}
@endif
{{-- Add Applicant Modal --}} @endsection