@extends('manager.layouts.app') @section('page_title') {{ $data->title ?? 'Job Details' }} @endsection @section('content')
{{-- Header --}}

{{ $data->title }}

{{ $data->short_description }}
Back to Jobs

{{-- Job Information --}}
Start Date:

{{ \Carbon\Carbon::parse($data->start_date)->format('d M Y') }}

End Date:

{{ \Carbon\Carbon::parse($data->end_date)->format('d M Y') }}

Location:

{{ $data->location }}

Employment Type:

{{ ucfirst($data->employment_type) }}

Vacancies:

{{ $data->vacancies }}

Salary Range:

{{ $data->salary_range }}

Experience Level:

{{ $data->experience_level }}

Education:

{{ $data->education }}

Status:

@if($data->is_active) Active @else Inactive @endif

{{-- Full Description --}}
Job Description:

{!! ($data->description) !!}

@endsection