美文网首页
Laravel 5 中自定义的validation放在什么位置比

Laravel 5 中自定义的validation放在什么位置比

作者: CicadaBear | 来源:发表于2016-11-23 13:10 被阅读57次

Laravel 5 中自定义的validation放在什么位置比较好?
最近在论坛发现了个比较满意的方案。

# app/wherever-you-want/CustomValidator.php

<?php

class CustomValidator extends Illuminate\Validation\Validator {

    public function validateFoo($attribute, $value, $parameters)
    {
        return $value == 'foo';
    }

}
<?php

class AppServiceProvider extends ServiceProvider{

  public function boot()
  {
    // ...
    Validator::resolver(function($translator, $data, $rules, $messages)
    {
      return new CustomValidator($translator, $data, $rules, $messages);
    });
    // ...
  }

}

References

l5-where-to-add-custom-validation-function @pmall

相关文章

网友评论

      本文标题:Laravel 5 中自定义的validation放在什么位置比

      本文链接:https://www.haomeiwen.com/subject/foqvpttx.html