Reputation: 1367
I am using Laravel package Laravel Multi Auth. How can I manually log in user ?
https://github.com/ollieread/multiauth
Upvotes: 0
Views: 466
Reputation: 420
Use the native login()
$user = User::find($id);
Auth::login($user);
Upvotes: 1