haythembenkhlifa/radio-slider

Laravel Nova 字段。

v1.0.7 2024-07-23 09:33 UTC

This package is auto-updated.

Last update: 2024-09-23 10:02:29 UTC


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.
              ];
        }

截图