bashy11 years agoLevel 65ReplyReport SpamYou can extend the validator like so Validator::extend('alphanum_dash_space', function($attribute, $value, $parameters) { return preg_match("/^[a-zA-Z0-9 -]+$/u", $value); }); Then in the rules, just add the new name 'somefield' => 'alphanum_dash_space|requried Like Reply