cleaniquecoders/laravel-blacklist is a Laravel package for validation disposable email domain.
It currently has 2 GitHub stars and 1.989 downloads on Packagist (latest version 1.5.0).
Install it with composer require cleaniquecoders/laravel-blacklist.
Discover more Laravel packages by cleaniquecoders
or browse all Laravel packages to compare alternatives.
Last updated
Validate the email provided either in the list of blacklisted domain.
You can install the package via composer:
composer require cleaniquecoders/laravel-blacklist
You can publish the config file with:
php artisan vendor:publish --tag="blacklist-config"
Then install list of disposable email list:
php artisan blacklist:install
use CleaniqueCoders\LaravelBlacklist\Rules\Blacklist;
$request->validate([
'email' => [new Blacklist]
]);
// OR
Validator::validate([
'email' => 'malinator.com',
], [
'email' => [new Blacklist],
]);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.