Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 23, 2018 13:55
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 uno-de-piera/eda9b79b0d9589ff9d80ec76851250c1 to your computer and use it in GitHub Desktop.
Save uno-de-piera/eda9b79b0d9589ff9d80ec76851250c1 to your computer and use it in GitHub Desktop.
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class ValidName implements Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return strlen($value) === 6;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return __('El nombre debe tener al menos una logitud de 6 caracteres');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment