ctf0/email-validator

validation rule to validate email for Laravel

Downloads

1967

Stars

16

Version

v1.0.7

EmailValidator
Latest Stable Version Total Downloads

also check https://github.com/mailcheck/mailcheck & for vue https://github.com/ctf0/mailcheck-vue


Installation

  • composer require ctf0/email-validator

  • add the service provider to config/app.php

    'providers' => [
        ctf0\EmailValidator\MailGunValidatorServiceProvider::class,
        // ctf0\EmailValidator\EguliasValidatorServiceProvider::class,
        // ctf0\EmailValidator\ValidatorPizzaServiceProvider::class,
    ]
    

Usage

  • add the rule to the validator

    'email' => 'required|email|isValid'
    
  • add the translation keys

    'custom' => [
        // ...
        'email' => [
            'isValid' => 'This :attribute is invalid',
        ],
    ],
    

Security

If you discover any security-related issues, please email [email protected].