collect where 大于

$collection = collect([
    ['product' => 'Desk', 'price' => 200],
    ['product' => 'Chair', 'price' => 100],
    ['product' => 'Bookcase', 'price' => 150],
    ['product' => 'Door', 'price' => 100],
]);

$filtered = $collection->where('price', '>',100);

$filtered->all();

不能where 大于什么的吗?如果我实现怎么办

JellyBool
修改的评论也不能少于六个字哦!