Support the ongoing development of Laravel.io →
Authentication Session Eloquent

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

Last updated 2 years ago.
0
if( Auth::attempt(['username' => ..., 'password' => ...]) ||
Auth::attempt(['email' => ..., 'password' => ...]) ||
Auth::attempt(['phone' => ..., 'password' => ...])){
...
}
Last updated 2 years ago.
0

Nice. Cool Thanks

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

DevHack devhack Joined 19 Nov 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.