@if($post->firstCategory)
{{ $post->firstCategory->name }}
@endif
{!! BaseHelper::clean($post->name) !!}
@if (theme_option('blog_show_author_name', 'yes') == 'yes' && class_exists($post->author_type) && ($author = $post->author ?? null) && trim($author->name))
{{ RvMedia::image($author->avatar_url, $author->name) }}
@endif
@if (theme_option('blog_show_author_name', 'yes') == 'yes' && class_exists($post->author_type) && ($author = $post->author ?? null) && trim($author->name))
{{ $post->author->name }}
@endif
{{ Theme::formatDate($post->created_at) }}
{!! BaseHelper::clean($post->content) !!}
@if($post->tags->isNotEmpty())
@endif
@php
$shareSocials = \Botble\Theme\Supports\ThemeSupport::getSocialSharingButtons($post->url, $post->name);
@endphp
@if($shareSocials)
@endif
@php
$relatedPosts = get_related_posts($post->id, 2);
@endphp
@if($relatedPosts->isNotEmpty())
@foreach($relatedPosts as $post)
$loop->first, 'next-post' => ! $loop->first])>
{{ $loop->first ? __('Previous') : __('Next') }}
@endforeach
@endif
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}