我想創建此擴展驗證。Laravel擴展驗證自定義消息
Validator::extend('my_custom_validation_rule', function ($attribute, $value, $parameters) {
// I guess I should be setting the error message for this here.(Its dynamic)
// We can return true or false here depending upon our need.
}
我會用這個規則是這樣
'my_field' => 'required|my_custom_validation_rule'
,
我想用一些動態消息的錯誤「my_custom_validation_rule
」
我無法找到的東西有關它的文檔。無論如何去做?
再看看:http://laravel.com/docs/5.0/validation#custom-error-messages – lukasgeiter
我想在Validator :: extend中提供消息('my_custom_validation_rule',s closure本身,有可能嗎? –