@if ($post->author && theme_option('blog_show_author_name', 'yes') == 'yes')
{{ __('By :name', ['name' => $post->author->name]) }}
@endif
@if ($post->categories->isNotEmpty())
{{ ($post->author && theme_option('blog_show_author_name', 'yes') == 'yes') ? __('in') : ucfirst(__('in')) }}
@foreach ($post->categories as $category)
{{ $category->name }}
@if (!$loop->last)
,
@endif
@endforeach
@endif
{{ __('on') }}
{!! BaseHelper::clean($post->content) !!}
@if ($post->tags->isNotEmpty())
{{ __('Tags') }}:
@foreach ($post->tags as $tag)
{{ $tag->name }}
@if (!$loop->last)
,
@endif
@endforeach
@endif
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}
@php $relatedPosts = get_related_posts($post->id, 4); @endphp
@if ($relatedPosts->isNotEmpty())