Laravel-Multiauth icon indicating copy to clipboard operation
Laravel-Multiauth copied to clipboard

Password reset always checking users from users table

Open aditya21 opened this issue 8 years ago • 3 comments

I have implemented two authentication tables admin and users. It works fine for login system. But password reset is always checking users from users table.

'multi' => [ 'user' => [ 'driver' => 'eloquent', 'model' => App\User::class, 'table' => 'users' ], 'admin' => [ 'driver' => 'eloquent', 'model' => App\Admin::class, 'table' => 'admins' ] ],

aditya21 avatar Apr 26 '16 12:04 aditya21