@php $latestTwoPosts = $posts->count() >= 3 ? $posts->pop(2) : collect(); @endphp
$sidebar]) @style($variableStyles) >
$sidebar, 'col-12' => ! $sidebar, ])>
@if ($title = $shortcode->title)

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

@endif
@foreach($posts as $post)
{{ RvMedia::image($post->image, $post->name, 'extra-large', attributes: ['class' => 'img-hover']) }} {!! Theme::partial('blog.post.partials.action-post', compact('post')) !!}
@if ($category = $post->firstCategory) @endif
{!! Theme::partial('post-meta', compact('post')) !!}
@endforeach
@if ($latestTwoPosts->isNotEmpty())
@foreach($latestTwoPosts as $post)
@if ($category = $post->firstCategory) @endif {!! Theme::partial('post-meta', ['post' => $post]) !!}
{{ RvMedia::image($post->image, $post->name, 'thumb') }} {!! Theme::partial('blog.post.partials.action-post', compact('post')) !!}
@endforeach
@endif
@if ($sidebar)
{!! dynamic_sidebar($sidebar) !!}
@endif