I have a field days in my model, now I want to only save integer or float values in this column.
Values can be like:
120.52.5
I tried to use numeric but then it is not allowing me to input float values:
$this->validate($request, [
'days' => 'required|numeric|min:1|max:50',
]);
Any help is highly appreciated.
Thanks
min:1required|digitsbacause currently i'm usingrequired|digits_between:0,100'required|numeric|min:0|max:50'