You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Valida se o nome tem mais de uma palavra
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return str_word_count($value) > 1;
}
/**
* Mensagem em caso de erro
*
* @return string
*/
public function message()
{
return 'Por favor, insira seu nome completo';
}
Podiam adicionar validação de nome completo.
The text was updated successfully, but these errors were encountered: