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
How to override the main RecaptchaV3 class in laravel
The text was updated successfully, but these errors were encountered:
you can bind it in your container to return your class instead . for example in you AppServiceProvider boot method
AppServiceProvider
boot
$this->app->bind(RecaptchaV3::class, function (Application $app) { return new YourRecaptchaV3(); });
Sorry, something went wrong.
No branches or pull requests
How to override the main RecaptchaV3 class in laravel
The text was updated successfully, but these errors were encountered: