@php $blockPosts = $posts->take(2); $smallPosts = $posts->skip(2)->take(4); @endphp
{{ __('breaking_news') }}
@foreach($sliderPosts as $post)
@include('site.partials.home.primary.slider')

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

@endforeach
@foreach($sliderPosts as $post)
@if(isFileExist(@$post->image, $result = @$post->image->small_image)) {!! $post->title !!} @else {!! $post->title !!} @endif
@endforeach
@foreach($blockPosts as $post)
@if(isFileExist(@$post->image, $result = @$post->image->medium_image)) {!! $post->title !!} @else {!! $post->title !!} @endif
@if($post->post_type=="video")
video-icon
@elseif($post->post_type=="audio")
audio-icon
@endif

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

@endforeach
@foreach($smallPosts as $post)
@if(isFileExist(@$post->image, $result = @$post->image->small_image)) {!! $post->title !!} @else {!! $post->title !!} @endif
@if($post->post_type=="video")
video-icon
@elseif($post->post_type=="audio")
audio-icon
@endif

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

@endforeach