• Radio Button

Radio Button

Plugin information

by Süleyman ÖZEV

Field Form builder

The radio button field for the Filament forms

Support

#radio-button on Discord

Views

3035

License

MIT

Documentation

Installation

You can install the package via composer:

composer require suleymanozev/filament-radio-button-field

Optionally, you can publish the views using

php artisan vendor:publish --tag="filament-radio-button-field-views"

Usage

RadioButton::make('amount')
->label('Example Label')
->options(['1' => 'Example Option Label', '2' => 'Example Option Label 2'])
->descriptions(['1' => 'Example Description', '2' => 'Example Description 2'])
->columns(3),