Laravel – How to check decimal values from 0 till 100?
On laravel 11 site I need to check decimal values from 0 till 100(with 2 decimals possible) and I do it with rules : ['required', 'numeric', 'between:0,100'], OR required|numeric|min:0.01|max:100 but both not works. Which rules are valid ? "laravel/framework": "^11.9",…