Review and manage all job postings
Total Jobs
{{ $jobs->total() }}
Active Jobs
{{ $jobs->where('status', 'active')->count() }}
Pending Review
{{ $jobs->where('status', 'pending')->count() }}
This Week
{{ $jobs->where('created_at', '>=', now()->startOfWeek())->count() }}
| Job Details | Company | Applications | Status | Posted | Actions |
|---|---|---|---|---|---|
|
{{ substr($job->title, 0, 1) }}
{{ $job->title }}
{{ $job->location }}
|
{{ $job->company->name ?? 'Unknown Company' }}
{{ $job->company->industry ?? 'N/A' }}
|
{{ $job->applications_count ?? 0 }}
@if(($job->applications_count ?? 0) > 0)
@endif
|
@if($job->status === 'active') Active @elseif($job->status === 'pending') Pending @elseif($job->status === 'rejected') Rejected @elseif($job->status === 'expired') Expired @else {{ ucfirst($job->status) }} @endif | {{ $job->created_at->diffForHumans() }} | |
No jobs foundNo jobs match your current filters. |
|||||