@extends('layouts.generic') {{-- SEO, Schema & Share --}} @section('page_title', $job->title) @section('share_url', route('jobs.get', ['slug' => $slug])) @section('share_title', $job->title . '-' .getSetting('site.name')) @section('share_description', SEOSchemaHelper::getDescriptionExcerpt($job->description)) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('meta') {!! SEOSchemaHelper::jobPosting($job) !!} @stop @section('styles') {!! Minify::stylesheet([ ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/js/pages/job.js', '/libs/sharer.js/sharer.min.js', ])->withFullUrl() !!} @stop @section('content')
@include('elements.message-alert',['classes'=>'pt-0 pb-4'])

{{$job->title}}

{!! Purifier::clean($job->description) !!}
@include('elements.listings.company-preview-box', ['company' => $job->company]) @if(getSetting('custom-code-ads.sidebar_ad_spot')) @include('elements.ads.job-page-sidebar-ad') @endif @include('elements.listings.job-details-box') @include('elements.listings.job-share-box') @include('elements.report-user-or-post',['reportStatuses' => GenericHelper::getReportTypes()])
@if($companyJobs->count())

{{__('Other listings')}}

@foreach($companyJobs as $job) @include('elements.listings.job-listing-box',['job' => $job]) @endforeach
{{ $companyJobs->links() }}
@endif
@endsection