@extends('layouts.app') @section('title','Recruitment') @section('page-title','Recruitment') @section('content') {{-- Filters --}}
@forelse($postings as $posting)
{{ $posting->title }}
{{ $posting->reference }} · {{ $posting->department?->name ?? 'No Dept.' }}
{{ ucfirst($posting->status) }}
Positions
{{ $posting->positions_available }}
Applications
{{ $posting->applications_count }}
Deadline
{{ $posting->application_deadline?->format('M d, Y') ?? '—' }}
Auto-Rec. Threshold
{{ $posting->recommendation_threshold }}%
@empty
No job postings yet
Create Your First Posting
@endforelse
@if($postings->hasPages())
{{ $postings->links('pagination::bootstrap-5') }}
@endif @endsection