haythembenkhlifa / radio-slider
Laravel Nova 字段。
v1.0.7
2024-07-23 09:33 UTC
Requires
- php: ^7.3|^8.0
README
安装
composer require haythem/radio-slider
用法
// 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. ]; }


