josiasmontag / laravel-recaptchav3

Laravel package for Google's Recaptcha V3
MIT License
188 stars 37 forks source link

How to override the main RecaptchaV3 class in laravel #36

Open shabyis opened 9 months ago

shabyis commented 9 months ago

How to override the main RecaptchaV3 class in laravel

ibrahem-kamal commented 5 months ago

you can bind it in your container to return your class instead . for example in you AppServiceProvider boot method

$this->app->bind(RecaptchaV3::class, function (Application $app) {
    return new YourRecaptchaV3();
});