Laravel集合搜索案例不敏感

Ste*_*one 7 php laravel

我正在搜索一个集合,我希望这个搜索大小写不敏感或至少以小写形式更改集合值.我怎样才能做到这一点?

$value = strtolower($value);
$collection = $collection->where($attribute, $value);
Run Code Online (Sandbox Code Playgroud)

$ value是小写,而集合中的内容不是,所以没有匹配.

Mar*_*ean 9

您可以改为使用该filter()方法执行您想要的回调:

$collection = $collection->filter(function ($item) use ($attribute, $value) {
    return strtolower($item[$attribute]) == strtolower($value);
});
Run Code Online (Sandbox Code Playgroud)