{{ $post->title }}

« Retour
@if ($post->settings['show_created_at'])
@date ($post->created_at->tz($page['timezone']))
@endif @if ($post->settings['show_owner'])
{{ $post->owner_name }}
@endif @if ($post->settings['show_excerpt'])
{!! $post->excerpt !!}
@endif
@if ($post->settings['show_image'] && $post->image) @endif {!! $post->content !!} @if ($post->getExtraFieldByAlias('translations')) Translations: {{ $post->getExtraFieldByAlias('translations') }} @endif
@if ($post->settings['show_categories'] && count($post->categories))

Categories
@php $categories = $post->getCategories($locale); @endphp @foreach ($categories as $category) {{ $category->name }} @endforeach

@endif