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

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.

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,991,690 1,705
php-tmdb/laravel

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

53,315 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

368,693 86
laravel/laravel

The skeleton application for the Laravel framework.

64,930,508 84,972