backtheweb / laravel-recaptcha
google recaptcha for Laravel
1.0.1
2023-02-23 19:12 UTC
Requires
- php: ^7.1|^8.0|^8.1|^8.2
- guzzlehttp/guzzle: ^6.0|^7.0
- laravel/framework: ^5.5|^7.0|^8.0|^9.0|^10.0
This package is auto-updated.
Last update: 2025-03-23 23:28:16 UTC
README
Edit the config/app.php
// Providers
'providers' => [
...,
Backtheweb\ReCaptcha\ReCaptchaServiceProvider::class
];
//Alias
'aliases' => [
...,
'ReCaptcha' => Backtheweb\ReCaptcha\Facade::class
],
Publish
php artisan vendor:publish --provider="Backtheweb\ReCaptcha\ReCaptchaServiceProvider" --tag="config"
How to use
$request->validate([
'recaptcha' => 'required|recaptcha',
]);