如果我的查询返回$posts
,其中包含3个ID为1,2和3的帖子,我可以以某种方式删除ID为2的$post
以便我循环浏览$posts
时我只输出ID为1和3的帖子吗?
答案 0 :(得分:2)
获取$ posts之后,您可以进行过滤
$posts = $posts->filter(function ($value, $key) {
return $value->id != 2;
});
查看此内容:
答案 1 :(得分:-1)
使用刀片:
@foreach($posts as $post)
@if(!$post->id == 2 )
{{$post->title}}
@endif
@endforeach