check if user is logged in with custom guard laravel code example
Example 1: get logged user id laravel
$id = Auth::user()->id;print_r($id);
Example 2: how to check if there is an authenticated user laravel
if (Auth::check()) { // The user is logged in... }