Skip to content

bobimicroweber/filament-dropdown-column

Repository files navigation

Filament Dropdown Column

Latest Version on Packagist GitHub Tests Action Status Total Downloads

banner

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.

About

No description, website, or topics provided.

Resources

License

Contributing

Security policy

Stars

2 stars

Watchers

1 watching

Forks

Sponsor this project

Packages

 
 
 

Contributors