@if($posts->isNotEmpty())
@foreach($posts as $post)
{{ RvMedia::image($post->image, $post->name, 'medium-rectangle') }} {{ Theme::formatDate($post->created_at) }}
{!! BaseHelper::clean($post->name) !!}
@if($post->description)

{!! BaseHelper::clean(Str::limit($post->description)) !!}

@endif
@endforeach
@endif