@extends('layouts.portal') @section('page-title', __('My Jobs')) @section('sidebar') @include('employer.partials.sidebar') @endsection @section('content')

{{ __('Job Listings') }}

{{ __('Post New Job') }}
@forelse($jobs as $job) @empty @endforelse
{{ __('Title') }} {{ __('Status') }} {{ __('Applications') }} {{ __('Views') }} {{ __('Actions') }}
{{ $job->title }} {{ $job->status->label() }} {{ $job->applications_count }} {{ $job->views_count }} {{ __('View') }} {{ __('Edit') }} @if($job->status->value === 'active')
@csrf
@elseif($job->status->value === 'paused')
@csrf
@endif @if(!in_array($job->status->value, ['closed', 'expired']))
@csrf
@endif
@csrf @method('DELETE')
{{ __('No jobs posted yet.') }}
{{ $jobs->links() }}
@endsection