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