Laravel eloquent multiple WHERE
I'm new in php/laravel. I'm trying to get one user with the userName of the user connected except if it's "Chuck NORRIS" This, is working. I'm getting the user connected information $oneUser= User::where('name', $userName)->get(); This, is not working. I'm getting…