Application Details

Review application for {{ $application->job->title }}

Applicant Information

{{ substr($application->user->name ?? 'U', 0, 1) }}

{{ $application->user->name ?? 'Unknown User' }}

{{ $application->user->email ?? '' }}

Applied {{ $application->created_at->diffForHumans() }}

Job Information

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

{{ $application->job->title }}

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

{{ $application->job->location }} Posted {{ $application->job->created_at->diffForHumans() }}
Salary Range: XAF {{ number_format($application->job->salary_min ?? 0) }} - {{ number_format($application->job->salary_max ?? 0) }}
Employment Type: {{ $application->job->job_type ?? 'Full-time' }}

Application Details

@if($application->expected_salary)

Expected Salary

XAF {{ number_format($application->expected_salary) }}

@endif @if($application->availability_date)

Available From

{{ $application->availability_date->format('M j, Y') }}

@endif @if($application->cover_letter)

Cover Letter

{{ $application->cover_letter }}

@endif @if($application->resume_path) @endif

Application Status

@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' ]; $statusLabels = [ 'pending' => 'Pending Review', 'reviewing' => 'Under Review', 'shortlisted' => 'Shortlisted', 'interviewed' => 'Interview Scheduled', 'offered' => 'Offer Extended', 'rejected' => 'Not Selected', 'withdrawn' => 'Withdrawn' ]; @endphp
{{ $statusLabels[$application->status] ?? ucfirst($application->status) }}
@csrf

Quick Actions

View Job Posting @if($application->user->email) Send Email @endif View All Applications