File: D:/HostingSpaces/SBogers10/lmbm.komma.pro/resources/views/site/pages/services/show.blade.php
@extends('site.master')
@section('title', $service->translation->name . ' | ' . $page->translation->meta_title)
@section('meta_description', $service->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->services->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->services->route,
'name' => trans('site/global.overview'),
],
'menuName' => trans('site/services.menuName'),
'models' => $services,
'activeModelId' => $service->id,
'modelTypeRoute' => $links->services->route
])
<section class="dynamic-content">
<div class="grid-row">
@include('site.partials.dynamic.dynamicBlocks', [ 'dynamicContent' => $service->translation->description ])
</div>
</section>
</div>
</div>
@include('site.partials.blocks.ctaRow', [ 'ctaTrigger1' => [],'ctaPerson' => []])
@endsection