Outsource Laravel Development Partner - $3200/Month | Bacancy

reCAPTCHA Packages for Laravel

Published on by

reCAPTCHA Packages for Laravel image

I recently needed a quick reCAPTCHA field for a public-facing form that I wanted to protect from bot spam. In the past, I’ve used a Laravel package from the community. However, I went hunting again for different Laravel packages that make setting up Google’s reCAPTCHA even easier than it already is.

If you’re interested in rolling your own, Talevski Igor wrote an excellent article explaining the step-by-step process for setting up a Google ReCaptcha integration with Laravel.

Before I cover the packages I tried out, I wanted to mention that Google released a reCAPTCHA V3 which “returns a score for each request without user friction.” I decided to go with V2 with an explicit reCAPTCHA checkbox, but I plan on looking into trying V3 to see how it works with for my needs.

I tried three different packages, which I will briefly go over:

No Captcha reCaptcha

The first option I tried out is anhskohbo/no-captcha by Nguyen Van Anh. This package has been around since 2014 and is relatively active—at least as productive as needed for the package to ease integrating Google’s reCaptcha.

You provide the reCaptcha site and secret key, and then use the package’s helpers to render out the appropriate HTML to support reCaptcha v2:

{!! NoCaptcha::display() !!}

To render the required JS script, you use the following:

{!! NoCaptcha::renderJs() !!}

On the server-side, you define the validator as follows to validate the user:

$validate = Validator::make(Input::all(), [
'g-recaptcha-response' => 'required|captcha'
]);

I am not sure if this package supports v3 of Google’s reCaptcha or not, and I didn’t pay much attention to that since I was using V2 anyway.

greggilbert/recaptcha

greggilbert/recaptcha is no longer maintained by the original developer, and I am not sure if someone else is maintaining this package anymore.

It looks like pull requests opened last year are still opened with not much movement on them. Rolling your own reCAPTCHA isn’t super complicated, so I personally wouldn’t use this package, but I wanted to mention it at least because I’ve used it in the past. Perhaps someone in the community is interested in helping the original maintainer out.

This package doesn’t support reCAPTCHA v3 at the time of writing.

Laravel ReCAPTCHA

Laravel ReCAPTCHA is a simple reCAPTCHA package for Laravel 5 with support for Google reCaptcha v3. At the time of writing, this package doesn’t support auto-discovery, so you have to configure the facade and provider manually. I did send a pull request to add auto-discovery, which might be merged by the time you’re reading this.

I ended up using this package since I eventually plan on trying out reCaptcha V3 and the package also supports skipping validation with a configurable array of IP addresses.

The readme also doesn’t convey that you need to add the reCAPTCHA javascript in the <head> tag, but overall the package made it pretty painless to get the reCAPTCHA validation working.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in:
Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
NativePHP for Mobile Is Now Free image

NativePHP for Mobile Is Now Free

Read article
Laravel Fuse: A Circuit Breaker Package for Queue Jobs image

Laravel Fuse: A Circuit Breaker Package for Queue Jobs

Read article
Generate Complete Application Modules with a Single Command using Laravel TurboMaker image

Generate Complete Application Modules with a Single Command using Laravel TurboMaker

Read article
`hasSole()` Collection Method in Laravel 12.49.0 image

`hasSole()` Collection Method in Laravel 12.49.0

Read article
Install Laravel Package Guidelines and Skills in Boost image

Install Laravel Package Guidelines and Skills in Boost

Read article
Bagisto Visual: Theme Framework with Visual Editor for Laravel E-commerce image

Bagisto Visual: Theme Framework with Visual Editor for Laravel E-commerce

Read article