bobimicroweber/filament-dropdown-column
Use custom dropdowns on filament tables as column
22,797
2
| Install | |
|---|---|
composer require bobimicroweber/filament-dropdown-column |
|
| Latest Version: | 0.0.2 |
| PHP: | ^8.1 |
| License: | MIT |
| Last Updated: | Aug 1, 2024 |
| Links: | GitHub · Packagist |
Maintainer: bobimicroweber
Filament Dropdown Column

Installation
You can install the package via composer:
composer require bobimicroweber/filament-dropdown-column
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-dropdown-column-views"
Usage
Simple
DropdownColumn::make('is_active')
->size('sm')
->options([
1 => 'Published',
0 => 'Unpublished',
])
Advanced with icons and colors
DropdownColumn::make('is_active')
->size('sm')
->options([
1 => 'Published',
0 => 'Unpublished',
])
->icon(fn (string $state): string => match ($state) {
'0' => 'heroicon-o-clock',
'1' => 'heroicon-o-check',
default => 'heroicon-o-clock',
})
->color(fn (string $state): string => match ($state) {
'0' => 'warning',
'1' => 'success',
default => 'gray',
}),
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
php-tmdb/laravel
Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...
53,315
160