@extends('layouts.admin') @section('page-title', 'Job Postings') @section('content')

Job Postings

Manage job postings and applications

Post New Job

All Jobs

@forelse($jobs as $job) @empty @endforelse
Title Department Vacancies Applications Status Actions
{{ $job->title }} {{ $job->department->name ?? 'N/A' }} {{ $job->vacancies }} {{ $job->applications_count ?? 0 }} applications {{ ucfirst($job->status) }}
@csrf @method('DELETE')

No job postings found

Post New Job
@if(isset($jobs) && $jobs->hasPages())
{{ $jobs->links() }}
@endif
@endsection