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
Larafast: Laravel SaaS Starter Kit

Larafast is a Laravel SaaS Starter Kit with ready-to-go features for Payments, Auth, Admin, Blog, SEO, and beautiful themes.

Visit Larafast: Laravel SaaS Starter Kit
Laravel Forge logo

Laravel Forge

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

Laravel Forge
Tinkerwell logo

Tinkerwell

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

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
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
Bacancy logo

Bacancy

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

Bacancy
LoadForge logo

LoadForge

Easy, affordable load testing and stress tests for websites, APIs and databases.

LoadForge
Paragraph logo

Paragraph

Manage your Laravel app as if it was a CMS – edit any text on any page or in any email without touching Blade or language files.

Paragraph
Lucky Media logo

Lucky Media

Bespoke software solutions built for your business. We ♥ Laravel

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
DocuWriter.ai logo

DocuWriter.ai

Save hours of manually writing Code Documentation, Comments & DocBlocks, Test suites and Refactoring.

DocuWriter.ai
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
All Green logo

All Green

All Green is a SaaS test runner that can execute your whole Laravel test suite in mere seconds so that you don't get blocked – you get feedback almost instantly and you can deploy to production very quickly.

All Green
Larafast: Laravel SaaS Starter Kit logo

Larafast: Laravel SaaS Starter Kit

Larafast is a Laravel SaaS Starter Kit with ready-to-go features for Payments, Auth, Admin, Blog, SEO, and beautiful themes. Available with VILT and TALL stacks.

Larafast: Laravel SaaS Starter Kit
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a 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
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector

The latest

View all →
The Random package generates cryptographically secure random values image

The Random package generates cryptographically secure random values

Read article
Automatic Blade Formatting on Save in PhpStorm image

Automatic Blade Formatting on Save in PhpStorm

Read article
PhpStorm 2024.1 Is Released With a Integrated Terminal, Local AI Code Completion, and More image

PhpStorm 2024.1 Is Released With a Integrated Terminal, Local AI Code Completion, and More

Read article
Laravel Prompts Adds a Multi-line Textarea Input, Laravel 11.3 Released image

Laravel Prompts Adds a Multi-line Textarea Input, Laravel 11.3 Released

Read article
Bartender Is an Opinionated Way to Authenticate Users Using Laravel Socialite image

Bartender Is an Opinionated Way to Authenticate Users Using Laravel Socialite

Read article
Jeffrey Way's PhpStorm Setup in 2024 image

Jeffrey Way's PhpStorm Setup in 2024

Read article