cohensive/recaptcha

Laravel 4 bridge for recaptcha/php5

4.0.0 2013-11-26 14:51 UTC

This package is auto-updated.

Last update: 2024-05-08 06:35:49 UTC


README

Installation

Add following require to your composer.json file:

    "cohensive/recaptcha": "dev-master"

Then run composer install or composer update to download it and autoload.

In providers array you need to add new package:

'providers' => array(

    //...
    'Cohensive\Recaptcha\RecaptchaServiceProvider',
    //...

)

In aliases:

'aliases' => array(

    //...
    'Recaptcha' => 'Cohensive\Recaptcha\Facades\Recaptcha'
    //...

)

And after all that, we need to add config file, which will hold our private and public keys. Run following line in command line:

    php artisan config:publish cohensive/recaptcha

Your public and private key could be found in Google reCaptcha account page.

Usage

Insert Recaptcha javascript code into your page (check your Google reCaptcha account).

Then, all you need is to insert a new rule to your validator on your POST processing page:

  return [
    'recaptcha_response_field' => 'recaptcha'
  ];

recaptcha rule can be added to any input attribute, just make sure to translate it correcly in your language file.