@extends('layouts.admin') @section('title', 'Careers') @section('header', 'Manage Careers') @section('content')

All Career Listings

Add New Career
@forelse($careers as $career) @empty @endforelse
Title Department Location Type Status Applications Valid Through Actions
{{ $career->title }}
{{ Str::limit($career->slug, 30) }}
{{ $career->department ?? 'N/A' }} {{ $career->location }} {{ ucfirst($career->employment_type) }}
@csrf @method('PATCH')
{{ $career->applications_count }} {{ $career->valid_through ? $career->valid_through->format('M d, Y') : 'No expiry' }} View Edit
@csrf @method('DELETE')

No careers found

Get started by creating a new career listing.

Add New Career
@if($careers->hasPages())
{{ $careers->links() }}
@endif
@endsection