Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 23, 2018 13:54
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/3b20b504276ae2d4f01bcb9bbfde103f to your computer and use it in GitHub Desktop.
Save uno-de-piera/3b20b504276ae2d4f01bcb9bbfde103f to your computer and use it in GitHub Desktop.
<?php
Validator::extend('valid_name', function ($attribute, $value, $parameters, $validator) {
return strlen($value) === 6 ? false : true;
}, __('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