Created
March 9, 2018 18:35
-
-
Save asantibanez/5c5e91360aac7ef15592366edeb9684f to your computer and use it in GitHub Desktop.
Emails Validation Rule for Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Rules; | |
use Illuminate\Contracts\Validation\Rule; | |
use Illuminate\Support\Facades\Validator; | |
class Emails implements Rule | |
{ | |
/** | |
* Create a new rule instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
// | |
} | |
/** | |
* Determine if the validation rule passes. | |
* | |
* @param string $attribute | |
* @param mixed $value | |
* @return bool | |
*/ | |
public function passes($attribute, $value) | |
{ | |
return collect(explode(',', $value))->filter(function ($email) { | |
return Validator::make([ | |
'email' => $email | |
], [ | |
'email' => 'required|email' | |
])->fails(); | |
})->count() == 0; | |
} | |
/** | |
* Get the validation error message. | |
* | |
* @return string | |
*/ | |
public function message() | |
{ | |
return 'The emails provided are invalid'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment