public function scopeNameIt(Builder $query,$array): void //pass the array as a parameter to the scope
{
$query->where(function($query) use ($array)){
foreach($array as $element){
$query->orWhereJsonContains('types',element);
}
}
}
你可以在文档中读到它 根据文档,您也可以将数组传递给whereJsonContains函数
public function scopeNameIt(Builder $query,$array): void //pass the array as a parameter to the scope
{
$query->WhereJsonContains('types',$array);
}
1条答案
按热度按时间8fsztsew1#
我想你可以用
orWhereJsonContains
函数,类似这样:你可以在文档中读到它
根据文档,您也可以将数组传递给
whereJsonContains
函数