@extends('admin.admin_dashboard') @section('admin')

All Applicants

@if($applicants->isEmpty())


No applicants found.

@else
@foreach($applicants as $index => $applicant) @endforeach
# Full Name Email Phone Position Applied Actions
{{ $index + 1 }} {{ $applicant->full_name }} {{ $applicant->email }} {{ $applicant->phone }} @forelse($applicant->positions as $position)
{{ $position->job->job_title ?? 'N/A' }} - {{ $position->status ? ucfirst($position->status) : 'Pending' }}
@empty No positions applied @endforelse
View
@endif
@if(session('success')) @endif @endsection