PHP code example of nguyendachuy / laravel-recaptcha3
1. Go to this page and download the library: Download nguyendachuy/laravel-recaptcha3 library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nguyendachuy / laravel-recaptcha3 example snippets
return [
/*
|--------------------------------------------------------------------------
| The reCAPTCHA site key provided by Google
|--------------------------------------------------------------------------
|
| Here you can set the sitekey
*/
'sitekey' => env('GOOGLE_CAPTCHA_SITEKEY', null),
/*
|--------------------------------------------------------------------------
| The reCAPTCHA secret key provided by Google
|--------------------------------------------------------------------------
|
| Here you can set the secet
*/
'secret' => env('GOOGLE_CAPTCHA_SECRET', null)
];
<body>
{{-- your app --}}
{{-- Default action is "form" --}}
@recaptchaJs
{{-- or custom action --}}
@recaptchaJs('form')
</body>
<form>
{{-- your input --}}
{{-- Default name is "g-recaptcha-response" --}}
@recaptchaInput
{{-- or custom name --}}
@recaptchaInput('custom-name')
</form>