@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @php $assetPath = fn (string $path) => asset('frontend/' . ltrim($path, '/')); @endphp @include('frontend.layouts.breadcrumb', ['title' => Str::limit($vacancy->title, 68)])
{{ strtoupper($vacancy->employment_type ?? 'OPEN ROLE') }}

{{ $vacancy->title }}

@if($vacancy->department)
{{ $vacancy->department->name }}
@endif @if($vacancy->location) {{ $vacancy->location }} @endif @if($vacancy->is_featured) Featured @endif Open
@if($vacancy->description)
{!! $vacancy->description !!}
@endif @if($vacancy->requirements)

Requirements

{!! $vacancy->requirements !!}
@endif @if($vacancy->responsibilities)

Responsibilities

{!! $vacancy->responsibilities !!}
@endif @if($relatedVacancies->count())

Related openings

@foreach($relatedVacancies as $relatedVacancy)
{{ $relatedVacancy->title }}

{{ $relatedVacancy->location ?? ucfirst($relatedVacancy->employment_type ?? '') }}

View role
@endforeach
@endif
@include('frontend.partials.newsletter') @endsection