Job Applications

Review and manage applications for your jobs

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() }}

All Applications

@forelse($applications as $application) @empty @endforelse
Applicant Job Position Status Applied Actions
{{ substr($application->user->name ?? 'U', 0, 1) }}
{{ $application->user->name ?? 'Unknown User' }}
{{ $application->user->email ?? '' }}
{{ $application->job->title }}
{{ $application->job->location }}
@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 your jobs will appear here once candidates start applying.

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