Skip to content

Instantly share code, notes, and snippets.

@asantibanez
Created March 9, 2018 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asantibanez/5c5e91360aac7ef15592366edeb9684f to your computer and use it in GitHub Desktop.
Save asantibanez/5c5e91360aac7ef15592366edeb9684f to your computer and use it in GitHub Desktop.
Emails Validation Rule for Laravel
<?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