dann95 / l5-disposable-emails-validation by thusk

Validation of disposable e-mails for Laravel 5
25
2
1
Package Data
Maintainer Username: thusk
Maintainer Contact: danielrubin95@hotmail.com (Daniel Rubin)
Package Create Date: 2017-02-03
Package Last Update: 2017-03-31
Language: PHP
License: MIT
Last Refreshed: 2025-02-09 15:18:17
Package Statistics
Total Downloads: 25
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 1
Total Open Issues: 0

Laravel 5 Disposable E-mails Validation

This repo uses ivolo/disposable-email-domains to update the black list.

How to install?

composer require dann95/l5-disposable-emails-validation

How to use?

Add service provider in config/app.php

    [
        //...
        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        // App\Providers\BroadcastServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,
        Dann95\L5DisposableEmails\Providers\DisposableEmailsServiceProvider::class /* add it here */
        //...
    ],

Using inside Http/Requests

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'email' => ['required','email','real_email'],
        ];
    }

    /**
     * @return array
     */
    public function messages()
    {
        return [
            'email.real_email' => 'Sorry you are using temporary e-mail',
        ];
    }

Using inside Http/Controller

public function store(Request $request)
{
    $this->validate($request, [
        'email' => 'required|email|real_email',
    ]);
    // the email is valid
}

Using anywhere

    $validator = Validator::make(request()->all(), [
        'email' => 'required|email|real_email',
    ]);

    if ($validator->fails()) {
        // it fails
    }