weblogin/laravel-honeypot

Laravel form spam protection with honeypot technique
2,099 5
Install
composer require weblogin/laravel-honeypot
Latest Version:v1.0.2
PHP:^7.4|^8.0
License:MIT
Last Updated:May 15, 2025
Links: GitHub  ·  Packagist
Maintainer: WebLogin

Laravel Honeypot

Laravel Honeypot helps prevent bots from filling forms and creating spam. It uses a 2 inputs protections technique by adding one input that should be empty after form submission (obviously bots will fill it) and one input with the encrypted timestamp of the loading page, that help tracking the delay during loading page and form submission (because bots submit forms quickly). Both inputs are hidden from the users and have randomized names.

Installation

You can install the package via composer (the package will automatically register itself) :

composer require weblogin/laravel-honeypot

Optionally, you can publish the config and lang files of the package :

php artisan vendor:publish --provider="WebLogin\LaravelHoneypot\ServiceProvider"

Usage

You need to add the Blade component or Blade directive in your form. The only parameter is the name of your fake input (it's a basename the package will add a random suffix). Obviously don't name it honeypot.

Blade component :

<form method="POST">
    <x-honeypot name="field-name"/>
    ...
</form>

Blade directive :

<form method="POST">
    @honeypot('field-name')
    ...
</form>

Then uses the Honeypot rule like any other Validation rules for this same input name, like so :

use WebLogin\LaravelHoneypot\Rules\Honeypot;
...

$request->validate([
    'title'      => ['required', 'max:120'],
    'content'    => ['required', 'max:600'],
    'field-name' => [new Honeypot],
]);

Configuration

You can change the default configuration by publishing the package config (see installation section). It will create a honeypot.php file in your config folder.

  • enabled to enable or not the whole honeypot protection
  • min_seconds to select the minimum number of seconds to wait before submitting the form

Translation

You can translate validation messages by publishing the package lang (see installation section) or you can translate it directly in your lang/your-locale/validation.php file by adding the needed keys :

'honeypot' => [
    'pot'  => "Message when the field that should be empty is filled",
    'time' => "Message when the form is submitted too quickly",
],

Credits

Inspired by the package https://github.com/msurguy/Honeypot.

License

The MIT License (MIT). Please see License File for more information.

Related Packages

maskow/livewire-combined-request

Shared FormRequest base that works for both Laravel HTTP controllers and Livewir...

1,668 1
artesaos/shield

A simple way to centralize your validation rules for laravel

747 32
propaganistas/laravel-phone

Adds phone number functionality to Laravel based on Google's libphonenumber API.

44,002,337 3,033
proengsoft/laravel-jsvalidation

Validate forms transparently with Javascript reusing your Laravel Validation Rul...

2,454,996 1,140
prettus/laravel-validation

Laravel Validation Service

11,913,613 406