$sidebar, 'col-12' => ! $sidebar, ])> @foreach($posts as $post)
{{ RvMedia::image($post->image, $post->name, attributes: ['class' => 'banner-image-one img-hover']) }} {!! Theme::partial('blog.post.partials.action-post', compact('post')) !!}
@if (class_exists($post->author_type) && ($author = $post->author))

{{ __('By :name / :date', ['name' => $author->name, 'date' => $post->created_at->format('d M Y')]) }}

@endif @if ($description = $post->description)

{!! BaseHelper::clean($description) !!}

@endif
@endforeach
@if ($sidebar)
{!! dynamic_sidebar($sidebar) !!}
@endif