bobimicroweber/filament-dropdown-column

Use custom dropdowns on filament tables as column

0.0.2 2024-08-01 16:59 UTC

This package is auto-updated.

Last update: 2024-09-01 17:13:38 UTC


README

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.