laravel 5.4使用刀片模板中的位置

时间:2017-07-28 03:36:17

标签: php laravel-5

在laravel 5.4中编写此代码的正确语法是什么

@foreach($productChuck as $product where $product->category_id = 1)

//本节的某些日期 @endforeach

我想要的只显示category_id为1

的产品

提前致谢

1 个答案:

答案 0 :(得分:0)

正确的语法是:

@foreach($productChuck->where('category_id', 1) as $product)
    ....
@endforeach

假设$productChuck是一个集合。有关详细信息,请参阅this