Laravel custom messages for array validation

后端 未结 10 2443
南笙
南笙 2021-02-20 05:36

I am having a form and I have an array of input fields for video urls, now when I validate form if I have multiple invalid fields with video urls, I get the same message for eac

10条回答
  •  情书的邮戳
    2021-02-20 06:19

    To use a custom messages from outside the validation language file, you can use it this way:

    $messages = ['username.required' => 'customeError'];
    
    $validator = \Validator::make(
        $data,
        ['username' => 'required'],
        messages
    );
    

    You can just pass an array of your custom messages as the third parameter as I have used it above. Hope this helps.

提交回复
热议问题