【发布时间】:2017-10-21 13:42:14
【问题描述】:
我知道收藏不支持 where LIKE 但我怎样才能做到这一点。
collect($products)->where('name', 'LIKE', '%'. $productName . '%');
Laravel 不支持集合中的 where like。我正在考虑使用
collect($products)->filter( function () use ($productName) {
return preg_match(pattern, subject);
});
但我不知道该怎么做。 TY
【问题讨论】:
标签: laravel