File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,20 @@ You can override the default options for The Package. First publish the configur
2626php artisan vendor:publish --provider="Joukhar\LaravelNoCaptchaV3\LaravelNoCaptchaV3" --tag=laravel-no-captcha-v3-config
2727```
2828
29- then Add new key to .env file to turn on/off the recaptcha ex:
29+ then Add The following keys to .env file to turn on/off the recaptcha ex:
3030
3131```
3232ENABLE_NO_CAPTCHA=on
33+ GOOGLE_RECAPTCHA_SITE_KEY=
34+ GOOGLE_RECAPTCHA_SECRET_KEY=
3335```
3436
3537And Add your Recaptcha Credentials in the config file:
3638
3739``` php
38- 'recaptcha' => [
39- 'site_key' => '' ,
40- 'secret_key' => ''
40+ 'recaptcha' => [
41+ 'site_key' => env('GOOGLE_RECAPTCHA_SITE_KEY') ,
42+ 'secret_key' => env('GOOGLE_RECAPTCHA_SECRET_KEY')
4143 ]
4244```
4345
You can’t perform that action at this time.
0 commit comments