DETECTING REMEMBER ME LOGINS

Jun 29, 2024 Copy Link

If your application offers "remember me" functionality, you may use the viaRemember method to determine if the currently authenticated user was authenticated using the "remember me" cookie:

 

use Illuminate\Support\Facades\Auth;

if (Auth::guard('web')->viaRemember()) {
    // ...
}

Share via

Mahmoud Ramadan

Mahmoud Ramadan

Mahmoud is the creator of Digging Code and a contributor to Laravel since 2020.