TextInput numeric with step

I have the following code:
TextInput::make('qta')
->numeric()
->step(96)
TextInput::make('qta')
->numeric()
->step(96)
Why do I only validate multiples of 96? I i insert 24 message: the value... from 0 to 96
1 Reply
Marco Mapelli
Marco Mapelli7mo ago
It is possible to set minValue(48) and step(96): if the value is 96 and i add a step the result = 192 and now is 144