@extends('template.'.config('settings.template').'.content.master') @section('head') @stop @section('content')

{{$content->title}}

{!! $content->kurzbeschreibung !!}

{!! $content->beschreibung !!}
@if($content->bilder)

Bilder

@foreach($content->bilder as $image)
@endforeach @endif

Unverbindlich anfragen

@if(session()->has('error'))
Fehler!
{{session()->get('error')}}
@endif @if(session()->has('success'))
@else
Wir verwenden Ihre Daten ausschließlich gemäß unserer Datenschutzerklärung.
@endif
@php($otherContents = filterByContentType("Leistungen")->filter(function ($item) use ($content) { return $item->id != $content->id; })) @if($otherContents->isNotEmpty())

Weitere Leistungen

@foreach($otherContents->take(3) as $index => $otherContent) @endforeach
@endif
Angebot anfordern
@stop @section('scripts') @stop