suleymanozev/filament-radio-button-field

The radio button field for the Filament forms
38,846 36
Install
composer require suleymanozev/filament-radio-button-field
Latest Version:v4.1.0
PHP:^8.0
License:MIT
Last Updated:Nov 7, 2025
Links: GitHub  ·  Packagist
Maintainer: suleymanozev

The radio button field for the Filament forms

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Installation

You can install the package via composer:

composer require suleymanozev/filament-radio-button-field

Add the package blade files the content section of the tailwind.config.js file.

module.exports = {
    content: [
        "./resources/**/*.blade.php",
        "./vendor/suleymanozev/**/*.blade.php", // Add this line
    ],
    theme: {
        extend: {},
    },
    plugins: [],
}

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),

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,924,784 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 161
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

363,860 86
laravel/laravel

The skeleton application for the Laravel framework.

64,565,571 84,921