@extends('company.layouts.master') @php $isIncomplete = ($mode ?? 'complete') === 'incomplete'; $heading = $isIncomplete ? 'Incomplete Records' : 'Job Applicants'; $route = $isIncomplete ? route('company.applicants.incomplete') : route('company.applicants.index'); @endphp @section('title', $heading) @section('page-title', $heading) @section('breadcrumbs')
| Name | Designation | Phone | Applied | Resume | Status | Profile |
|---|---|---|---|---|---|---|
| {{ $applicant->name ?? '—' }} | {{ $applicant->listing?->job_role ?? $applicant->position ?? '—' }} | {{ $applicant->phone ?? '—' }} | {{ $applicant->created_at?->format('d M, Y h:i A') ?? '—' }} | @if ($applicant->resume) Resume @else — @endif | @permission('applicants.edit') @else {{ $statuses[$applicant->status] ?? ucfirst($applicant->status) }} @endpermission | Profile |
| No {{ $isIncomplete ? 'incomplete records' : 'applicants' }} yet. | ||||||