haythembenkhlifa / radio-slider
A Laravel Nova field.
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: ^7.3|^8.0
README
Installation
composer require haythem/radio-slider
Usage
// NOVA RESOURCE use Haythembenkhlifa\RadioSlider\RadioSlider; public function fields(Request $request) { // Please note that the radio buttons are grouped by the field name. return [ RadioSlider::make("Radio Slider", "custom_field") ->setValues(['Not Likely' => 0, 'Maybe' => 'maybe', 'Very likely' => 'very likely']) ->initialValue(4)//this will select the default value if there is nothing on the database. ]; }