I am trying to run following query in Lumen Framework:
SELECT * FROM user WHERE (username = $username OR email = $username) AND password = $password AND flag = 1;
My Lumen code:
$login = User::where('pass', '=', md5($pass))
->where('flag', '=', $flag)
->where('username', '=', $username)
->orWhere('email', '=', $username)->first();
Somehow this code always return true and bypass the login. What is wrong in that query?
When I remove orWhere
from query it works perfect for username.
If you want to group the two conditions (username and email) into a single condition (surrounded by parenthesis), you will have to do it like this:
Here is the documentation on advanced where conditions for the Laravel query builder (which Lumen uses).