<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
accentinteractive / laravel-disallowlister example snippets
// Use the disallowlist validator with the default disallowlist.
$rules = [
'user_input' => 'disallowlister'
];
// Use the disallowlist validator with the my_list disallowlist.
$rules = [
'user_input' => 'disallowlister:default',
'user_emails' => 'disallowlister:my_email_list'
];
use Accentinteractive\LaravelDisallowlister\Facades\Disallowlister;
// Call the facade directly, using the default disallowlist
DisallowLister::isDisallowed('Earn $4,000 A DAY working from HOME!!!');
// Call the facade directly, using a specific disallowlist
DisallowLister::setDisallowList(config('disallowlister.lists.mylist'))
->isDisallowed('Earn $4,000 A DAY working from HOME!!!');
// Add and remove items on the facade
DisallowLister::add('foo')
->add(['*bar*', 'b?t'])
->remove('b?t')
->isDisallowed('Earn $4,000 A DAY working from HOME!!!');