@section('title', $post->title)
{{-- Hero/Banner Section --}}
@if ($post->image) {{ $post->title }} @endif
@if ($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

{{-- Content Section --}}
{!! $post->content !!}
{{-- Navigation --}}
{{-- Previous Post --}} @if ($previousPost) @if ($previousPost->image) @else
@endif
Anterior Post

{{ $previousPost->title }}

@else @endif {{-- Next Post --}} @if ($nextPost) @if ($nextPost->image) @else
@endif
Siguiente Post

{{ $nextPost->title }}

@else @endif