We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get this error when i try to access the site after i implemented the package on my site
// If don't has any guard follow the flow if (empty($guards)) { return $this->authenticate($guards); }
i fixed it by returning changing the method in MultiAuthenticate middleware class like so
// If don't has any guard follow the flow if (empty($guards)) { $this->authenticate($guards); return $next($request); }
maybe im doing something wrong.... but after that change, everything works perfectly
The text was updated successfully, but these errors were encountered:
Had the same issue, this fixed it
Sorry, something went wrong.
Thanks brow. Please create a pull request.
Ok will do that, will use my personal account rather than the company account @Jumeni
Ok @pedmindset . I am waiting. Thanks
790ac58
No branches or pull requests
I get this error when i try to access the site after i implemented the package on my site
i fixed it by returning changing the method in MultiAuthenticate middleware class like so
maybe im doing something wrong.... but after that change, everything works perfectly
The text was updated successfully, but these errors were encountered: