Skip to content

Instantly share code, notes, and snippets.

@kbirmhrjn
Created March 20, 2014 14:29
Show Gist options
  • Save kbirmhrjn/9664949 to your computer and use it in GitHub Desktop.
Save kbirmhrjn/9664949 to your computer and use it in GitHub Desktop.
//required it in global.php
Validator::extend('alpha_spaces', function($attribute, $value)
{
return preg_match('/^[\pL\s]+$/u', $value);
});
// use it as usual:
$rules = array('name' => 'required|alpha_spaces');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment