You can install the package via composer:
composer require bobimicroweber/filament-dropdown-columnOptionally, you can publish the views using
php artisan vendor:publish --tag="filament-dropdown-column-views"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',
}),composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
