Skip to content

Commit ade41b7

Browse files
authored
Update README.md
1 parent 7c54bea commit ade41b7

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ then Add new key to .env file to turn on/off the recaptcha ex:
3232
ENABLE_NO_CAPTCHA=on
3333
```
3434

35-
And Add your Recaptcha Credentials in the config file , you can get them here https://www.google.com/u/1/recaptcha/admin/create:
35+
And Add your Recaptcha Credentials in the config file:
3636

3737
```php
3838
'recaptcha' => [
@@ -41,9 +41,11 @@ And Add your Recaptcha Credentials in the config file , you can get them here ht
4141
]
4242
```
4343

44+
you can get them here https://www.google.com/u/1/recaptcha/admin/create
45+
4446
## Views
4547

46-
You can publish the views via:
48+
If You want to override the default views, you can publish them via:
4749

4850
```
4951
php artisan vendor:publish --provider="Joukhar\LaravelNoCaptchaV3\LaravelNoCaptchaV3" --tag=laravel-no-captcha-v3-views
@@ -113,7 +115,7 @@ class TestController extends Controller
113115
// if ENABLE_NO_CAPTCHA = off , it will return 'false' ;
114116

115117
$recaptchaResult = $noCaptchaV3Controller->reCaptchaResponse();
116-
return $recaptchaResult;
118+
117119
// conclusion
118120
if ($recaptchaResult == 'safe') {
119121
// your code
@@ -124,3 +126,7 @@ class TestController extends Controller
124126
```
125127

126128

129+
## License
130+
131+
The MIT License (MIT). Please see [License File](LICENSE) for more information.
132+

0 commit comments

Comments
 (0)