@php //$posts = data_get($categorySection, 'category.post', collect([])); $blockPosts = $posts->skip(1)->take(4); $firstPost = $posts->first(); @endphp

@if(data_get($categorySection, 'label') == 'videos') {{__('videos')}} @else {{ \Illuminate\Support\Str::upper(data_get($categorySection, 'label')) }} @endif

@if(!blank($firstPost))
@include('site.partials.home.category.first_post')

{!! $firstPost->title !!}

{!! strip_tags(\Illuminate\Support\Str::limit($firstPost->content, 155)) !!}

@endif
@foreach($blockPosts as $post) @endforeach