@props([ 'limit' => null, 'disabled' => null, // news ID ]) @php $news = \App\Models\News::getLatestNews($disabled); if ($limit) { $news = array_slice($news, 0, $limit); } @endphp
@foreach ($news as $news_item) @endforeach