我正在编写以下代码以确保整数值大于0
public function rules()
{
return [
'DUIHistoryID' => 'required|integer|between:1,11',
];
}
我错过了什么吗?验证在上面的代码中不起作用
答案 0 :(得分:0)
需要在请求类中添加以下函数。
public function messages() {
return [
'DUIHistoryID.min' => 'Please select DUI History',
];
}