@php(Theme::set('pageTitle', ''))
{{ $post->name }}
{{ $post->author->name }} {{ Theme::formatDate($post->created_at) }} {{ 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