@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

@include('site.partials.home.category.first_post')

{!! \Illuminate\Support\Str::limit($firstPost->title, 50) !!}

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

@foreach($blockPosts as $post)
@include('site.partials.home.category.post_block')

{!! \Illuminate\Support\Str::limit($post->title, 25) !!}

@endforeach