@php Theme::layout('full-width'); Theme::set('breadcrumbStyle', 'without-title'); $relatedPosts = get_related_posts($post->getKey(), 3); Theme::set('pageTitle', $post->name); @endphp
$relatedPosts->isEmpty()])>
@if ($post->categories->isNotEmpty())
@foreach ($post->categories as $category) {{ $category->name }}@if (!$loop->last), @endif @endforeach
@endif

{{ $post->name }}

@if ($post->author) {{ __('By :name', ['name' => $post->author->name]) }} @endif {{ Theme::formatDate($post->created_at) }} {{ number_format($post->views) }}
{!! BaseHelper::clean($post->content) !!}
{{ __('Tags:') }} @foreach ($post->tags as $tag) {{ $tag->name }} @endforeach
{{ __('Share:') }}
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}
{!! dynamic_sidebar('blog_sidebar') !!}
@if ($relatedPosts->isNotEmpty()) @endif