@foreach($news->chunk(2) as $_news) @foreach($_news as $key => $item) @endforeach @if(count($_news) == 1) @endif
news_image
{{\Carbon\Carbon::parse($item->on_shelf_date)->format('d/m/Y')}}
{{ Str::of($item->title)->replace(["\r", "\n"], ["", ""])->limit(20) }}
{{ empty($item->description)? "-" : Str::of($item->description)->replace(["\r", "\n"], ["", ""])->limit(125, "...") }}
 
@endforeach