@php $rows = $posts->chunk(3); @endphp
$sidebar, 'col-12' => ! $sidebar, ])> @if ($title = $shortcode->title) @endif
@foreach($rows as $posts)
@if ($firstPost = $posts->first())
{!! Theme::partial('shortcodes.blog-posts.partials.post-item', ['post' => $firstPost, 'sizeImage' => 'large']) !!}
@endif
@foreach($posts->skip(1) as $post) {!! Theme::partial('shortcodes.blog-posts.partials.post-item', [ 'post' => $post, 'wrapperClass' => 'small mb-3', 'sizeImage' => 'medium', 'hideButton' => true, ]) !!} @endforeach
@endforeach
@if ($sidebar)
{!! dynamic_sidebar($sidebar) !!}
@endif