How to check if user is logged in laravel code example
Example 1: check if logged laravel
use Illuminate\Support\Facades\Auth;
if (Auth::check()) {
// The user is logged in...
}
Example 2: current loggedin user laravel
$user = auth()->user(); print($user->id);print($user->name);print($user->email);
Example 3: how to check if there is an authenticated user laravel
if (Auth::check()) { // The user is logged in... }