Skip to content

Instantly share code, notes, and snippets.

@nch7
Created July 11, 2016 23:11
Show Gist options
  • Save nch7/6a6c10042bec368b042450b98b9aad06 to your computer and use it in GitHub Desktop.
Save nch7/6a6c10042bec368b042450b98b9aad06 to your computer and use it in GitHub Desktop.
Model::where(['ragaca1'=>'true', 'ragaca2'=>'false'])->where(function($q){
$q->orWhere('price','>=','100');
$q->orWhere('noprice','=','1');
})->where(function($q){
$q->orWhere('price','<=','1000');
$q->orWhere('noprice','=','1');
})->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment