check anotehr user is logged in 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... }
$id = Auth::user()->id;print_r($id);
if (Auth::check()) { // The user is logged in... }