0

I've a Laravel 5.0 project, that I need to implement the following logic

$var1= 'A';
$var2= 'B';
$var3= 50;
$data = DataModel::select('attr1','attr2')->where(function($q){
    $q->where('attr3','like','%'.$var1.'%');
    $q->where('attr4','like',$var2.'%');
    $q->where('attr5','=',$var3);
})->get();

The problem is for the "Where" function $var1, var2 and $var3 are undefined variables.

My Question is, How can I pass multiple parameters to the where function?

2 Answers 2

5

Here, closure function passed in where argument. To inherit variables you have to use use keyword

For example function($q) use($var1, $var2, $var3){...

To learn more about closure function please check php manual.

Sign up to request clarification or add additional context in comments.

Comments

3

Try this

$var1= 'A';
$var2= 'B';
$var3= 50;
$data = DataModel::select('attr1','attr2')->where(function($q) use ($var1, $var2, $var3) {
    $q->where('attr3','like','%'.$var1.'%')
        ->orWhere('attr4','like',$var2.'%')
        ->orWhere('attr5','=',$var3);
})->get();

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.