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

{{$content->title}}

{!! $content->vorschau !!}
Veröffentlicht: {{date('d.m.Y', strtotime($content->created_at))}}

{!! isset($content->neuigkeit) ? $content->neuigkeit : 'keine Angaben' !!}
@php($otherContents = filterByContentType("News")->filter(function ($item) use ($content) { return $item->id != $content->id; })) @if($otherContents->isNotEmpty())

Weitere Nachrichten

@foreach($otherContents->take(3) as $otherContent)

{{$otherContent->title}}

19 hours ago
{!! Str::limit('Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus consequuntur cum cumque dicta eligendi et ex, fugiat id, incidunt iste iusto natus non provident quae veritatis vero vitae voluptas voluptate?', 280) !!}
@endforeach @endif
@stop @section('scripts') @stop