我收到以下错误
(1/1) ErrorException
compact(): Undefined variable: operator
Run Code Online (Sandbox Code Playgroud)
这是我的代码行
$postsCat = Post::whereHas('Cat', function($query) use ($sreachWord) {
return $query->whereRaw('name REGEXP"'.sql_text_to_regx($sreachWord).'"');
})->orderBy('top','desc')
->orderBy('updated_at','desc')
->paginate(30);
Run Code Online (Sandbox Code Playgroud)
为什么会这样?是因为我的 PHP 版本 (7.3) 还是其他原因?