File: D:/HostingSpaces/SBogers10/switch4u.komma.nl/resources/views/templates/faq_show.blade.php
@extends('master')
@section('title', $vacancy->translation->meta_title != '' ? $vacancy->translation->meta_title : $vacancy->translation->name .' | '. $page->translation->name .' | '. config('site.company_name'))
@section('meta_description', $page->translation->meta_description)
@section('content')
@include('organisms.heroContentImage', [
'model' => $vacancy,
'backToLink' => $links->faq->route,
'backToLabel' => __('faq.backToLabel'),
'pageTitleCenter' => true,
])
{{--When components are set on this page they will be put here --}}
@include('organisms.components')
{{-- Always show the vacancies menu here after the components --}}
<div class="o-block">
<div class="l-split l-split--contain l-split--is-reversed l-split--breakout-on-m">
<div class="l-split__column l-split__column--vpad u-spacing-pr0@l s-text">
<h2>{!! $servicePointHeading !!}</h2>
@if(!empty($servicePointButton->translation->label) || !empty($servicePointButton->translation->url))
@include('components.servicePoint', [
'buttonText' => $servicePointButton->translation->label ?? '',
'buttonLink' => $servicePointButton->translation->url ?? '',
])
@endif
</div>
<div class="l-split__column">
@include('components.subnav', [
'modifiers' => ['boxed'],
'menuName' => __('faq.menuName'),
'models' => $vacancies,
'modelTypeRoute' => $links->faq->route,
'activeModelId' => $vacancy->id,
'showBackToIndex' => false,
'backToLabel' => __('vacancies.backToLabel'),
])
</div>
</div>
</div>
{{-- Discover row fixed on this page --}}
<div class="l-contain o-block">
@if(isset($discover_page_codenames) && count($discover_page_codenames) > 0)
@include('organisms.cardGrid', [
'title' => __('vacancies.heading'),
'cardItems' => $discover_page_codenames,
'modelThroughLinks' => true
])
@endif
</div>
@include('organisms.calloutBar')
@endsection