{{ $post->name }}

{!! Theme::partial('breadcrumb') !!}
{{ $post->name }}
{!! Theme::partial('post-meta', compact('post')) !!}

{{ $post->name }}

{!! BaseHelper::clean($post->content) !!}
{!! 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 }}

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

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