@extends('layouts.app') @section('title', 'Manage Listings') @section('content')

Jobs Management

Reset
@forelse($jobs as $job) @empty @endforelse
# Image Job Title Centre Name Location Job Type Application Status Posted Action
{{ $job->id }} @if($job->featuredImage) @else
@endif
{{ $job->title }}
{!! Str::limit($job->description, 50) !!}
----- {{ $job->address }} {{ ucfirst(str_replace('_',' ',$job->job_type)) }} ----- @php $statusClass = [ 'published' => 'success', // Green 'draft' => 'secondary', // Gray 'closed' => 'dark', // Black/Dark Gray 'approved' => 'primary', // Blue 'rejected' => 'danger', // Red ]; @endphp {{ ucfirst($job->status) }} {{ $job->created_at->format('d M Y') }}
No jobs found
{{ $jobs->links() }}
@endsection