backtheweb/laravel-recaptcha

google recaptcha for Laravel

1.0.1 2023-02-23 19:12 UTC

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',
]);