PHP code example of fungku / spamguard

1. Go to this page and download the library: Download fungku/spamguard library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

fungku / spamguard example snippets


Fungku\SpamGuard\Providers\SpamGuardServiceProvider::class,

'SpamGuard' => Fungku\SpamGuard\Facades\SpamGuard::class,

class MyController extends Controller
{
    public function __construct()
    {
        $this->middleware('spam_honeypot');
        $this->middleware('spam_timer');
        $this->middleware('spam_recaptcha');
    }
}

$this->middleware('spamguard');

$this->middleware('spam_timer:10,300', ['only' => 'postComment']);
bash
php artisan vendor:publish --provider="Fungku\SpamGuard\Providers\SpamGuardConfigServiceProvider" --tag="config"
html
<form action="/some-route/action">

    {!! SpamGuard::html(['spam_honeypot', 'spam_timer', 'spam_recaptcha']) !!}

    <!-- other form elements -->

</form>