This repository is archived and no longer maintained.
If you offer, maintain, or know of an actively maintained alternative to this project, please contact me at maintainers@huth.it.
If the alternative references this repository as its source, inspiration, predecessor, or migration path, I may list it here so existing users can find a maintained replacement.
composer require norman-huth/nova-key-input
Based on KeyValue Field
KeyInput::make(__('Prices'), 'prices')
->rules('json')
->disableEditingKeys()
->disableAddingRows()
->disableDeletingRows()
->keyLabel(__('Country'))
->valueLabel(__('Price'))
->type('number')
->step(0.01)
->min(0)
->max(5000)
->required()