Review and manage all job applications
Total Applications
{{ $applications->total() }}
Pending Review
{{ $applications->where('status', 'pending')->count() }}
Shortlisted
{{ $applications->where('status', 'shortlisted')->count() }}
This Week
{{ $applications->where('created_at', '>=', now()->startOfWeek())->count() }}
| Applicant | Job Position | Company | Status | Applied | Actions |
|---|---|---|---|---|---|
|
{{ substr($application->user->name ?? 'U', 0, 1) }}
{{ $application->user->name ?? 'Unknown User' }}
{{ $application->user->email ?? '' }}
|
{{ $application->job->title }}
{{ $application->job->location }}
|
{{ $application->job->company->name ?? 'Unknown Company' }}
{{ $application->job->company->industry ?? 'N/A' }}
|
@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 foundNo applications match your current filters. |
|||||