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/stafa/stafa.nl/resources/views/site/templates/assortments_show.blade.php
@extends('site.master')

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

@section('content')
    <div class="o-body">

        @include('site.organisms.hero', [
            'backButtonText' => __('site/assortment.backToLabel'),
            'backButtonLink' => $links->assortment->route,
            'heroTitle' => $page->translation->name . ' &rarr; ' . $assortment->translation->name,
            'heroHeader' => $assortment->hero->title,
            'heroText' => $assortment->hero->description,
            'heroImages' => $assortment->hero->documents->values()->toArray(),
            'heroActionButtonLabel' => !empty($assortment->hero->buttons->translation) ? $assortment->hero->buttons->translation->label : null,
            'heroActionButtonLink' => !empty($assortment->hero->buttons->translation) ? $assortment->hero->buttons->translation->url : null,
        ])


        <div class="u-bg-wrapper">
            <div class="u-ornament-triangle"></div>
            <div class="u-bg-triangle-neutral"></div>

            @include('site.organisms.components')

            <div class="o-block  l-contain">
                @include('site.components.servicepoint', [
                    'servicepoint' => $servicepoint,
                    'servicepointText' => __('site/global.servicepoint.text'),
                    'alternate' => true,
                    'servicepointButtonText' => __('site/projects.servicepointContactButton'),
                    'servicepointButtonLink' => $links->contact->route
                ])
            </div>

        </div>

        @include('site.organisms.calloutBar', ['showCalloutBarOrnament' => true])

    </div>
@endsection