在laravel验证中自定义翻译值

时间:2018-02-28 16:55:56

标签: php laravel laravel-5 laravel-5.6

我对laravel 5.6进行了条件验证:

'body' => 'required_if:body.*.type,left',

在validation.php中

"required_if" => " :attribute is required when :other is :value",

并返回如下消息:text is required when type is left

我想将“左”这个词翻译成我的自定义词。

有可能吗?

我试试这些:

'attributes' => array(
   'left' => 'left2'
),

'value' => array(
   'left' => 'left2'
),

但没有成功!

0 个答案:

没有答案