@extends('layouts.admin') @section('title', 'Job Openings') @section('content_header')

Job Openings

@stop @section('content')

List of Job Openings

Add New Job
@forelse($jobs as $index => $job) @empty @endforelse
# Title Experience Required Location Status Actions
{{ ($jobs->currentPage() - 1) * $jobs->perPage() + $index + 1 }} {{ $job->title }} {{ $job->experience_required ?: 'N/A' }} {{ $job->location ?: 'N/A' }} @if($job->is_active) Active @else Inactive @endif View Edit
@csrf @method('DELETE')
No job openings found.
@if($jobs->hasPages()) @endif
@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') @stop