$sidebar = $shortcode->sidebar, 'col-12' => ! $sidebar, ])>
@if ($title = $shortcode->title)

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

@endif
@foreach($posts as $post) @if ($loop->iteration <= 2)
{{ RvMedia::image($post->image, $post->name, 'small', attributes: ['class' => 'img-hover']) }} {!! Theme::partial('blog.post.partials.action-post', compact('post')) !!}
{{ $post->name }}

{!! Theme::partial('post-meta', ['post' => $post, 'wrapperClass' => 'echo-feature-area-read-view']) !!}
@endif @endforeach
@foreach($posts as $post) @if ($loop->iteration > 2 && $loop->iteration <= 6)

{{ $loop->index + 1 }}

{{ $post->name }} {!! Theme::partial('post-meta', ['post' => $post, 'wrapperClass' => 'echo-feature-area-option-read-more']) !!}
@endif @endforeach
@foreach($posts as $post) @if ($loop->iteration > 6)
{{ $post->name }} {!! Theme::partial('post-meta', ['post' => $post, 'wrapperClass' => 'echo-feature-area-last-content-read-view']) !!}
@endif @endforeach
@if ($sidebar)
{!! dynamic_sidebar($sidebar) !!}
@endif