laravel 中特定字段的自定义验证消息

Custom validation messages to specific field in laravel

我想知道是否可以为特定字段创建自定义验证消息。例如,我有一个名为 firstname,laravel 的字段,因此验证错误消息带有 if firstname(不是大写字母和所有字母)所以它看起来很糟糕。我只想为这个字段创建一条特定的消息,它必须在 validation.php 上,因为我的网站有不同的语言。可能吗?

如果我有一个名为电子邮件的字段?我知道电子邮件已经是验证消息,所以我可以为名为电子邮件的字段创建自定义验证消息。不管他们是否有电子邮件验证条件。

您可以通过自定义错误消息设置更改您的验证消息,details

现在根据您的语言,您只需更改 $messages 数组

$messages = array(
    'required' => 'The :attribute field is required.',
    'same'    => 'The :attribute and :other must match.',
    'size'    => 'The :attribute must be exactly :size.',
    'between' => 'The :attribute must be between :min - :max.',
    'in'      => 'The :attribute must be one of the following types: :values',
);

$validator = Validator::make($input, $rules, $messages);

是的,你可以。

使用此自定义消息添加特定于字段的自定义消息

//field_rule => 'your message'
$messages = array(
'email_required' => 'The :attribute field is required.'
);

是的,您可以像这样使用此自定义消息:

    $messages = [
        'required' => 'The :attribute field is required.',
        'birthdate.required' => 'The BIRTHDATE field is required.'
    ];

    $validator = Validator::make($request->all(), [
        'name' => 'required',
        'birthdate' => 'required',
    ], $messages);