 }})
 }})
@php
$news = \App\Service\NewsService::doSearchForFront()->paginate(10);//
@endphp
@foreach($news as $key => $item)
@if($item->system_part == config('const.news_system_part_code.truck'))
@elseif($item->system_part == config('const.news_system_part_code.parts'))
@else
@continue
@endif
@if($item->updated_at > Carbon::now()->subDays(7))
NEW
@endif
- {{ Carbon::parse($item->updated_at)->format('Y/m/d') }}
- @php echo nl2br(Str::limit($item->content,90, '...') ); @endphp
@endforeach