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