Skip to content

Instantly share code, notes, and snippets.

@mehedithedue
Last active April 7, 2019 05:28
Show Gist options
  • Save mehedithedue/9372e687326b3bd3461f6e49a197e0a3 to your computer and use it in GitHub Desktop.
Save mehedithedue/9372e687326b3bd3461f6e49a197e0a3 to your computer and use it in GitHub Desktop.
Where (OR AND) by Closure Laravel Eloquent ORM
$variable = Modal::where(function ($query) use ($info) {
$query->where('column_one', $info)
->orWhere('column_two', $info)
->orWhere('status', 3);
})
->where('deleted', 0)
->first();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment