@extends('layouts.public') @section('title', $post->meta_title ?? trans('seo.title.post', ['title' => $post->title, 'category' => $post->category->title])) @section('description', $post->meta_description ?? $post->summary) @section('image', asset($post->image)) @section('content')
@if($post->images->count()) @else {{$post->title}} @endif
{{$post->date}} / {{$post->category->title}}

{{$post->summary}}

{!!$post->content!!} @foreach($post->documents as $document) {{$document->name}}
@endforeach
@include('include.aside')
@endsection @push('styles') @endpush @push('scripts') @endpush