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/lmbm.komma.pro/resources/views/site/pages/projects/show.blade.php
@extends('site.master')

@section('title', $project->translation->name . ' | ' . $page->translation->meta_title)
@section('meta_description', $project->translation->meta_description)

@section('content')

    {{--<h1>{{$post->translation->name}}</h1>--}}
    {{--{{$post->translation->description}}--}}

    <div class="show-model-detail">
        <div class="grid-row">

            <a class="return-to-overview" href="/{{$links->projects->route}}">
                <span class="arrow">@include('site.svg.arrow')</span>
                <p>@lang('site/global.backToOverview')</p>
            </a>

            @include('site.partials.show.subMenu', [
                'overview' => (object)[
                    'route' => $links->projects->route,
                    'name' => trans('site/global.overview'),
                ],
                'menuName' => trans('site/projects.menuName'),
                'models' => $projects,
                'activeModelId' => $project->id,
                'modelTypeRoute' => $links->projects->route
            ])

            <section class="dynamic-content">
                <div class="grid-row">
                    @include('site.partials.dynamic.dynamicBlocks', [ 'dynamicContent' => $project->translation->description ])
                </div>
            </section>

        </div>
    </div>


    @include('site.partials.blocks.ctaRow', [ 'ctaTrigger1' => [],'ctaPerson' => []])

@endsection