This is exactly what I need and it works well, thank you!
Just a few features that I would ideally like:
- Ability to control the width of the field on index. The field is very wide, maybe 300px, in my first implementation. I just want a small number field.
- Ability to set min and max for numbers in the same way you can for the default Nova number fields, i.e.:
->min(1)->max(99999)
- Validation rules to the above effect don't seem to have an effect:
->rules('integer', 'min:0', 'max:99999'),
This is exactly what I need and it works well, thank you!
Just a few features that I would ideally like:
->min(1)->max(99999)->rules('integer', 'min:0', 'max:99999'),