I have a column month_1 in table who have type
is decimal(12,2)
how can i validate it in my Request class?
public function rules()
{
return [
'month_1' =>'required',
];
}
do i have to write between:0,99.99
?
will it be applicable to my case also?