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.'%');
});
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.'%');
});