how to check if the user is logged in with laravel 8 code example
Example 1: get logged user id laravel
$id = Auth::user()->id;print_r($id);
Example 2: check if logged laravel
use Illuminate\Support\Facades\Auth;
if (Auth::check()) {
// The user is logged in...
}
Example 3: how to check if there is an authenticated user laravel
if (Auth::check()) { // The user is logged in... }