@extends('layouts.master') @section('title', $data['pageTitle']) @section('content')

{{ $job->title }}

    @if($job->location)
  • Location: {{ $job->location }}
  • @endif @if($job->job_type)
  • Job Type: {{ $job->job_type }}
  • @endif @if($job->salary_range)
  • Salary: {{ $job->salary_range }}
  • @endif @if($job->date_posted)
  • Posted: {{ $job->date_posted->format('d M Y') }}
  • @endif @if($job->application_deadline)
  • Apply By: {{ $job->application_deadline->format('d M Y') }}
  • @endif
@if($job->description)

Overview

{!! $job->description !!}
@endif @if($job->roles_and_responsibilities)

Roles & Responsibilities

{!! $job->roles_and_responsibilities !!}
@endif @if($job->requirements)

Requirements

{!! $job->requirements !!}
@endif @if($job->benefits)

Benefits

{!! $job->benefits !!}
@endif
@endsection