Job Management

Review and manage all job postings

Admin Mode

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

All Job Postings

@forelse($jobs as $job) @empty @endforelse
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() }}
View
@csrf @method('PATCH')
@csrf @method('DELETE')

No jobs found

No jobs match your current filters.

@if($jobs->hasPages())
{{ $jobs->links() }}
@endif