how to check if user is authenticated in laravel code example
Example: how to check if there is an authenticated user laravel
if (Auth::check()) { // The user is logged in... }
if (Auth::check()) { // The user is logged in... }