HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/eleo.komma.nl/resources/views/templates/services_show.blade.php
@extends('master')

@section('title', $service->translation->meta_title != '' ? $service->translation->meta_title : $service->translation->name .' | '. $page->translation->name .' | '. config('site.company_name'))
@section('meta_title', $service->translation->meta_title ?? '')
@section('meta_description', $service->translation->meta_description ?? '')

@section('content')

    {{-- This shows only title when intro is not active --}}
    @include('organisms.heroContentImage', [
        'model' => $service,
        'backToLink' => $links->services->route,
        'backToLabel' => __('services.backToLabel'),
    ])

    {{--When components are set on this page they will be put here --}}
    @include('organisms.components')

    {{-- Always show the services menu here after the components --}}
    <div class="o-block  l-contain">
        <div class="l-restrict-narrow">
        @include('components.subnav', [
            'modifiers' => ['boxed'],
            'menuName' => __('services.menuName'),
            'models' => $services,
            'modelTypeRoute' => $links->services->route,
            'activeModelId' => $service->id,
            'showBackToIndex' => false,
            'backToLabel' => __('services.backToLabel'),
        ])
        </div>
    </div>


    {{-- Discover row fixed on this page --}}
    @if(isset($discover_page_codenames) && count($discover_page_codenames) > 0)
        <div class="l-contain  o-block">
            @include('organisms.cardGrid', [
                'title' => __('global.discover_header'),
                'cardItems' => $discover_page_codenames,
                'modelThroughLinks' => true
            ])
        </div>
    @endif

    @include('organisms.calloutBar')

@endsection