{{ __('Job Applications') }}
TOTAL APPLICATIONS
{{ $applications->count() }}
ACCEPTED
{{ $applications->where('status', 'accepted')->count() }}
PENDING
{{ $applications->where('status', 'pending')->count() }}
REJECTED
{{ $applications->where('status', 'rejected')->count() }}
Advanced Filters
Applications Table
entries
| Applicant | Job Title | Contact Info | Status | Applied Date | CV File | Actions |
|---|---|---|---|---|---|---|
|
{{ $application->full_name }}
{{ Str::limit($application->cover_letter, 50) }}
|
{{ $application->job->title }}
{{ $application->job->location }}
|
{{ $application->email }}
@if($application->phone)
{{ $application->phone }}
@endif
|
@php $statusColors = [ 'pending' => 'warning', 'reviewed' => 'info', 'shortlisted' => 'primary', 'interviewed' => 'secondary', 'accepted' => 'success', 'rejected' => 'danger' ]; $color = $statusColors[$application->status] ?? 'secondary'; @endphp {{ ucfirst($application->status) }} | {{ $application->created_at->format('M d, Y H:i') }} | @if($application->cv_file) Download @else No CV @endif |
|
| Applicant | Job Title | Contact Info | Status | Applied Date | CV File | Actions |