自定义验证提示语

Validator::extend('multiple', function ($attribute, $value, $parameters) {    
  if ((int)($value  % $parameters[0])) {        
    return false;    
  }    
return true;
}, ':attribute必须是');<br></br>

我想提示语是这样的,比如验证是8的倍数时。提示语是

':attribute必须是'.$parameters[0].'倍数

JellyBool
修改的评论也不能少于六个字哦!