Hi,
Currently , we have below scenario for login
$input = Input::all();
Auth::attempt([
'username' => $input['username'],
'password' => $input['password']
]);
I have 3 unique column in my user table and they are "username->uniquer()", "email->uniquer()", "phone->unique()"
and i would like to use al above option for authentication, something like below :-
$input = Input::all();
Auth::attempt([
'username' => $input['username'],
'email' => $input['username'],
'phone' => $input['phone'],
'password' => $input['password']
]);
From that i mean, User may provide either their "username" or "email" or "phone" and whatever is provided it should try to authenticate with those field name there ...
How can i use this ??
As providing above option fails in my laravel 4.2
Thanks
if( Auth::attempt(['username' => ..., 'password' => ...]) ||
Auth::attempt(['email' => ..., 'password' => ...]) ||
Auth::attempt(['phone' => ..., 'password' => ...])){
...
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community