新着情報
もっと読む
@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