@extends('layouts.app') @section('page_title','Recruitment') @section('page_subtitle','Post jobs and manage recruitment pipeline.') @section('content')

Create Job Posting

View Applications
@csrf

Job Postings

@forelse($jobs as $job)@empty@endforelse
TitleDepartmentTypeStatusClosingApplications
{{ $job->title }}
{{ $job->location }}
{{ $job->department?->name ?? '-' }}{{ str_replace('_',' ',ucfirst($job->employment_type)) }}{{ ucfirst($job->status) }}{{ $job->closing_date?->format('d M Y') ?? '-' }}{{ $job->applications_count }}
No job postings yet.
@endsection