@if ($posts->count() > 0)
@foreach($posts as $post)
{{ $post->name }}

{!! BaseHelper::clean($post->name) !!}

{!! Theme::partial('post-meta', compact('post')) !!}

{{ Str::words($post->description, 50) }}

@endforeach

@endif