我创建了两个自定义验证方法profilePhotoWidth
和profilePhotoHeight
,当我使用它们时,我也发送了一个参数。如何获取错误消息的此参数?命名被替换的单词是什么?
<?php
$validator = Validator::make(
Input::all(),
[
'logo' => ['mimes:jpeg,jpg,png,gif', 'max:1024', 'profilePhotoWidth:300', 'profilePhotoHeight:300']
],
[
'logo.profile_photo_width' => 'Max photo width is :??? px.',
'logo.profile_photo_height' => 'Max photo height is :??? px.'
]
);
答案 0 :(得分:0)
默认情况下有2个参数::key
和:message