{{ $applications->count() }} applications received
{{ $job->company->name ?? 'Company Name' }}
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() }}
| 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() }} | |
No applications yetApplications for this job will appear here once candidates start applying. View My Jobs |
|||