【发布时间】:2021-08-31 07:42:18
【问题描述】:
我的模型中有一个字段days,现在我只想在此列中保存integer 或float 值。
值可以是:
120.52.5
我尝试使用numeric,但它不允许我输入float 值:
$this->validate($request, [
'days' => 'required|numeric|min:1|max:50',
]);
非常感谢任何帮助。
谢谢
【问题讨论】:
-
@Pradeep :我尝试了您的解决方案,但不允许我输入如下值:0.5
-
只需删除
min:1 -
@Pradeep:我应该只使用
required|digits,因为目前我正在使用required|digits_between:0,100 -
试试这个
'required|numeric|min:0|max:50' -
@Pradeep 我试过了,但它不起作用