Applications for {{ $job->title }}

{{ $applications->count() }} applications received

{{ substr($job->company->name ?? 'C', 0, 1) }}

{{ $job->title }}

{{ $job->company->name ?? 'Company Name' }}

{{ $job->location }} Posted {{ $job->created_at->diffForHumans() }}
{{ $job->status }} @if($job->featured)
FEATURED JOB
@endif

Total Applications

{{ $applications->count() }}

Pending Review

{{ $applications->where('status', 'pending')->count() }}

Shortlisted

{{ $applications->where('status', 'shortlisted')->count() }}

This Week

{{ $applications->where('created_at', '>=', now()->startOfWeek())->count() }}

All Applications

@forelse($applications as $application) @empty @endforelse
Applicant Status Applied Actions
{{ substr($application->user->name ?? 'U', 0, 1) }}
{{ $application->user->name ?? 'Unknown User' }}
{{ $application->user->email ?? '' }}
@php $statusColors = [ 'pending' => 'bg-gray-100 text-gray-800', 'reviewing' => 'bg-blue-100 text-blue-800', 'shortlisted' => 'bg-yellow-100 text-yellow-800', 'interviewed' => 'bg-purple-100 text-purple-800', 'offered' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', 'withdrawn' => 'bg-gray-100 text-gray-600' ]; @endphp {{ ucfirst($application->status) }} {{ $application->created_at->diffForHumans() }}
View @if($application->resume_path) Resume @endif

No applications yet

Applications for this job will appear here once candidates start applying.

View My Jobs
@if($applications->hasPages())
{{ $applications->links() }}
@endif