@extends('layouts.admin-simple') @section('title', 'Job Applications') @section('page-title', 'Job Applications') @section('breadcrumb')
| Applicant | Position | Applied Date | Status | Actions |
|---|---|---|---|---|
|
{{ substr($application->first_name ?? 'J', 0, 1) }}
{{ $application->first_name ?? 'John' }} {{ $application->last_name ?? 'Doe' }}
{{ $application->email ?? 'john@example.com' }}
|
{{ $application->jobPosition->title ?? 'Software Engineer' }} | {{ $application->created_at ? $application->created_at->format('M d, Y') : 'Jan 15, 2024' }} | @php $statusClass = match($application->status ?? 'pending') { 'pending' => 'badge-soft-info', 'reviewed' => 'badge-soft-warning', 'accepted' => 'badge-soft-success', 'rejected' => 'badge-soft-danger', default => 'badge-soft-info' }; $statusText = ucfirst($application->status ?? 'pending'); @endphp {{ $statusText }} | |
|
assignment_ind
No applications foundApplications will appear here when candidates apply for positions. |
||||