@if($post->category)
{{ $post->category }}
@endif
@if($post->is_featured)
Featured
@endif
{{-- Share Buttons --}}
@if($showShareButtons)
@endif
{{ $post->getTranslation('title', app()->getLocale()) }}
{{-- Meta Information --}}
@if($showAuthor && $post->author)
{{-- Excerpt --}}
@if($showExcerpt && $post->excerpt)
@if($post->author->profile_photo_url ?? false)
@endif
By {{ $post->author->name }}
@endif
@if($showDate)
@endif
@if($showReadingTime)
{{ $post->reading_time }} min read
@endif
@if($showUpdatedDate && $post->updated_at->gt($post->published_at))
Updated {{ $post->updated_at->format('F j, Y') }}
@endif
{{ $post->getTranslation('excerpt', app()->getLocale()) }}
@endif
{!! $post->getTranslation('content', app()->getLocale()) !!}
{{-- Tags --}}
@if($showTags && $post->tags && count($post->tags) > 0)
Tags
@foreach($post->tags as $tag)
#{{ $tag }}
@endforeach
@if($post->author->profile_photo_url ?? false)
@endif
{{ $post->author->name }}
@if($post->author->bio ?? false){{ $post->author->bio }}
@endif