如何在Laravel中使用@foreach(blade)時排除項目?如何在Laravel中使用@foreach時排除項目?
例如:
用戶有一些文章,在文章詳細頁面:
<p>Article detail:</p>
<h2>{{$article->title}}</h2>
<p>{{$article->content}}</p>
<h4>The other articles of this user:</h4>
@foreach ($articles as $article)
<p>{{$article->title}}</p>
@endforeach
問:
在@foreach
,如何排除已被上面顯示的文章?
工匠在控制器或模型中處理數據,視圖僅用於顯示數據。 – Kyslik