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