@php(Theme::set('pageTitle', ''))
{{ $post->name }}
{{ $post->author->name }} {{ $post->created_at->translatedFormat('M d, Y') }} {{ number_format($post->views) }}

{{ $post->name }}

{!! BaseHelper::clean($post->content) !!}
@if ($post->tags->isNotEmpty())
{{ __('Tags') }} @foreach ($post->tags as $tag) {{ $tag->name }} @endforeach
@endif
@if (theme_option('facebook_comment_enabled_in_post') === 'yes')

{{ __('Comment') }}

{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}
@endif