Skip to content

Instantly share code, notes, and snippets.

@damienwebdev
Created November 3, 2015 15:19
Show Gist options
  • Save damienwebdev/981fcf0fc96cb680d7f4 to your computer and use it in GitHub Desktop.
Save damienwebdev/981fcf0fc96cb680d7f4 to your computer and use it in GitHub Desktop.
public function boot()
{
Validator::extend('price', function($attribute, $value, $parameters, $validator) {
return preg_match ('^\d{0,8}(\.\d{1,4})?$', $value);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment