How to check if a user is logged in, in a non middleware controller
in laravel?
auth Auth::guard
if (Auth::guard('api')->check()){ //will return true if logged in
//do this
}
else //if the user is not logged in
{
//do this
}