Authenticate users from more than two tables in laravel 5 [duplicate] Authenticate users from more than two tables in laravel 5 [duplicate] laravel laravel

Authenticate users from more than two tables in laravel 5 [duplicate]


First create Admin Authenticatable in Illuminate\Foundation\Auth like

    <?phpnamespace Illuminate\Foundation\Auth;use Illuminate\Auth\Authenticatable;use Illuminate\Database\Eloquent\Model;use Illuminate\Auth\Passwords\CanResetPassword;use Illuminate\Foundation\Auth\Access\Authorizable;use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;    class Admin extends Model implements        AuthenticatableContract,        AuthorizableContract,        CanResetPasswordContract    {        use Authenticatable, Authorizable, CanResetPassword;    }

Then create Admin Model by extending Authenticatable Admin Model :-

  <?phpnamespace App;use Illuminate\Foundation\Auth\Admin as Authenticatable;class Admin extends Authenticatable{    /**     * The attributes that are mass assignable.     *     * @var array     */    protected $fillable = [        'name', 'email', 'password',    ];    /**     * The attributes that should be hidden for arrays.     *     * @var array     */    protected $hidden = [        'password', 'remember_token',    ];}

After that you need to modify config/auth.php like below Add in providers array

'admins' => [            'driver' => 'eloquent',            'model' => App\Admin::class,        ], 

and Add in guards array.

 'user' => [            'driver' => 'session',            'provider' => 'users',        ], 'admin' => [            'driver' => 'session',            'provider' => 'admins',        ],

Now to authenticate from user table

 if (Auth::guard('user')->attempt(['email' => $email, 'password' => $password])) {        $details = Auth::guard('user')->user();        $user = $details['original'];        return $user;    } else {        return 'auth fail';    }

And to authenticate from Admin table

 if (Auth::guard('admin')->attempt(['email' => $email, 'password' => $password])) {        $details = Auth::guard('admin')->user();        $user = $details['original'];        return $user;    } else {        return 'auth fail';    }


You could setup multiple authentication guards, with each one having a different provider. The providers define the table or model to be used.

In config/auth.php you setup the providers as follows and you also setup corresponding guards for each of those providers:

'providers' => [    'users'  => [        'driver' => 'eloquent',        'model'  => App\User::class,    ],    'managers'  => [        'driver' => 'eloquent',        'model'  => App\Manager::class,    ],    'admins'  => [        'driver' => 'eloquent',        'model'  => App\Admin::class,    ]]

Then you can authenticate like this:

Auth::attempt($credentials) // use default guard for simple usersAuth::guard('manager')->attempt($credentials)Auth::guard('admin')->attempt($credentials)

Check out the docs here.


Try my idea if you want to. I'm expecting that different table has different users. Because it won't work if you have the same user in other tables.

  1. Choose your priority table (e.g. users)
  2. Add the condition
    • if(Auth::user(attempt(...))
    • elseif(Auth::manager(attempt(...))
    • elseif(Auth::admins(attempt(...)))

Note: Your priority table here is users, then if the user doesn't exists in that table, it will try the managers table, then if still doesn't exists, it will check the admins table, otherwise (use else) return a message error.

Other option:

Other option is to use this package sarav/laravel-multiauth. You can follow this thread. How to use authentication for multiple tables in Laravel 5 for more information.

More Reference:

https://laracasts.com/discuss/channels/general-discussion/using-laravel-auth-for-multiple-tables?page=1

Can anyone explain Laravel 5.2 Multi Auth with example

https://laracasts.com/discuss/channels/laravel/52-auth-multiple-tables?page=1