All Applicants
@if($applicants->isEmpty())
@endif
No applicants found.
| # | Full Name | 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 |