简体   繁体   中英

Refer to external variables in Laravel eloquent whereHas method

The following code gives the error Undefined variable searchParam . Need help.

if($searchParam!=null){
        $results=Image::whereHas('subjects',function($q){
            $q->where('subject','LIKE','%'.$searchParam.'%');
        });

Try with -

$results=Image::whereHas('subjects',function($q) use ($searchParam){
     $q->where('subject','LIKE','%'.$searchParam.'%');
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM