我需要验证关键字“唯一”两个不同的错误消息。这该怎么做?是否有任何我可以复制和重命名的独特功能?
'unique' => 'The :Attribute has already been taken.',
谢谢
答案 0 :(得分:1)
从https://laravel.com/docs/5.6/validation#custom-error-messages复制
为给定属性指定自定义消息
有时您可能希望仅为特定字段指定自定义错误消息。您可以使用“点”表示法。首先指定属性名称,然后指定规则:
$messages = [
'email.required' => 'We need to know your e-mail address!',
];
用字段名替换电子邮件,必填项用唯一的。