{!! Theme::partial('post-meta', compact('post')) !!}
{!! apply_filters('before_single_content_detail', null, $post) !!}
{!! BaseHelper::clean($post->content) !!}
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, theme_option('facebook_comment_enabled_in_post', 'yes') == 'yes' ? Theme::partial('comments') : null) !!} {!! apply_filters('after_single_content_detail', null, $post) !!} @if ($post->tags->count())

{{ __('Tags') }}: @foreach ($post->tags as $tag) {{ $tag->name }}@if (!$loop->last), @endif @endforeach

@endif
{!! Theme::partial('share', ['title' => __('Share this post'), 'description' => $post->description]) !!}
@php $relatedPosts = get_related_posts($post->id, 2); @endphp @if ($relatedPosts->count())
{{ __('Related posts') }}:
@foreach ($relatedPosts as $relatedItem)
{{ $relatedItem->name }}

{{ $relatedItem->name }}

{{ Str::words($relatedItem->description, 40) }}

@endforeach
@endif
{!! dynamic_sidebar('primary_sidebar') !!}