在laravel 5.4中编写此代码的正确语法是什么
@foreach($productChuck as $product where $product->category_id = 1)
//本节的某些日期 @endforeach
我想要的只显示category_id为1
的产品提前致谢
答案 0 :(得分:0)
正确的语法是:
@foreach($productChuck->where('category_id', 1) as $product)
....
@endforeach
假设$productChuck
是一个集合。有关详细信息,请参阅this。