@php $featuredPosts = get_featured_posts(6, ['slugable', 'categories', 'categories.slugable']); @endphp
{!! clean($title) !!}

{{ __('Hot tags') }}:

@if ($featuredPosts->count() > 1)
@foreach($featuredPosts->take(2) as $post)

{{ $post->name }}

@endforeach
@endif @foreach($featuredPosts->skip(2)->take(1) as $post)
{!! Theme::partial('components.post-card', compact('post')) !!}
@endforeach @foreach($featuredPosts->skip(3) as $post)
{!! Theme::partial('components.post-card', compact('post')) !!}
@endforeach