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

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
Battle Ready Laravel

The ultimate guide to auditing, testing, fixing and improving your Laravel applications so you can build better apps faster and with more confidence.

Visit Battle Ready Laravel
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
Cut PHP Code Review Time & Bugs into Half with CodeRabbit logo

Cut PHP Code Review Time & Bugs into Half with CodeRabbit

CodeRabbit is an AI-powered code review tool that specializes in PHP and Laravel, running PHPStan and offering automated PR analysis, security checks, and custom review features while remaining free for open-source projects.

Cut PHP Code Review Time & Bugs into Half with CodeRabbit
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
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
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
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 →
A new beta of Laravel Wayfinder just dropped image

A new beta of Laravel Wayfinder just dropped

Read article
Ben Bjurstrom: Laravel is the best Vibecoding stack for 2026 image

Ben Bjurstrom: Laravel is the best Vibecoding stack for 2026

Read article
Laravel Altitude - Opinionated Claude Code agents and commands for TALL stack development image

Laravel Altitude - Opinionated Claude Code agents and commands for TALL stack development

Read article
JSON:API Resource in Laravel 12.45 image

JSON:API Resource in Laravel 12.45

Read article
Caching With MongoDB for Faster Laravel Apps image

Caching With MongoDB for Faster Laravel Apps

Read article
Laravel 12.44 Adds HTTP Client afterResponse() Callbacks image

Laravel 12.44 Adds HTTP Client afterResponse() Callbacks

Read article