{{ __('Job Applications') }} - {{ $job->title }}
Job Information
{{ $job->title }}
{{ $job->description }}
{{ ucfirst($job->user_type) }}
{{ ucfirst(str_replace('_', ' ', $job->employment_type)) }}
{{ $job->location }}
Valid: {{ $job->valid_from->format('M d, Y') }} - {{ $job->valid_until->format('M d, Y') }}
Applications: {{ $applications->count() }}
Filter Applications
Applications Table
Total Applications: {{ $applications->count() }}
| Applicant | Contact Info | Status | Applied Date | CV File | Actions |
|---|---|---|---|---|---|
|
{{ $application->full_name }}
{{ Str::limit($application->cover_letter, 50) }}
|
{{ $application->email }}
@if($application->phone)
{{ $application->phone }}
@endif
|
@php $statusColors = [ 'pending' => 'warning', 'reviewed' => 'info', 'shortlisted' => 'primary', 'interviewed' => 'secondary', 'accepted' => 'success', 'rejected' => 'danger' ]; $color = $statusColors[$application->status] ?? 'secondary'; @endphp {{ ucfirst($application->status) }} | {{ $application->created_at->format('M d, Y H:i') }} | @if($application->cv_file) Download @else No CV @endif |
|
| Applicant | Contact Info | Status | Applied Date | CV File | Actions |