Skip to content

Commit dac583c

Browse files
authored
Update README.md
1 parent ade41b7 commit dac583c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,20 @@ You can override the default options for The Package. First publish the configur
2626
php 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
```
3232
ENABLE_NO_CAPTCHA=on
33+
GOOGLE_RECAPTCHA_SITE_KEY=
34+
GOOGLE_RECAPTCHA_SECRET_KEY=
3335
```
3436

3537
And 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

0 commit comments

Comments
 (0)