PHPackages                             microweber-deps/filament-dropdown-column - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. microweber-deps/filament-dropdown-column

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

microweber-deps/filament-dropdown-column
========================================

Use custom dropdowns on filament tables as column

1.0(9mo ago)020MITPHPPHP ^8.1

Since Jul 19Pushed 9mo agoCompare

[ Source](https://github.com/microweber-deps/filament-dropdown-column)[ Packagist](https://packagist.org/packages/microweber-deps/filament-dropdown-column)[ Docs](https://github.com/bobimicroweber/filament-dropdown-column)[ GitHub Sponsors](https://github.com/bobimicroweber)[ RSS](/packages/microweber-deps-filament-dropdown-column/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Filament Dropdown Column
========================

[](#filament-dropdown-column)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ca158f5ddc162793a859412b73d48fe04bf993fec0384e30128913ef49392650/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626f62696d6963726f77656265722f66696c616d656e742d64726f70646f776e2d636f6c756d6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bobimicroweber/filament-dropdown-column)[![GitHub Tests Action Status](https://camo.githubusercontent.com/3799d6d1737221ac32739b5cdbca48c3209b471ec14c49abb1ceaad03b045012/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f626f62696d6963726f77656265722f66696c616d656e742d64726f70646f776e2d636f6c756d6e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/bobimicroweber/filament-dropdown-column/actions?query=workflow%3Arun-tests+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/e404f3411f201efb1a27ed8b037edda57530fc790a738de13b86c03fc9a9058e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626f62696d6963726f77656265722f66696c616d656e742d64726f70646f776e2d636f6c756d6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bobimicroweber/filament-dropdown-column)

[![banner](resources/assets/banner.jpg)](resources/assets/banner.jpg)

Installation
------------

[](#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
-----

[](#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
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Bozhidar Slaveykov](https://github.com/bobimicroweber)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance56

Moderate activity, may be stable

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

294d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4dc06e05e127ad3192ef9797ace808069687140538add8e6dbad34ce50bcd1f8?d=identicon)[boksiora](/maintainers/boksiora)

---

Top Contributors

[![bobimicroweber](https://avatars.githubusercontent.com/u/50577633?v=4)](https://github.com/bobimicroweber "bobimicroweber (28 commits)")[![peter-mw](https://avatars.githubusercontent.com/u/5698247?v=4)](https://github.com/peter-mw "peter-mw (1 commits)")

---

Tags

laravelbobimicroweberfilament-dropdown-column

### Embed Badge

![Health badge](/badges/microweber-deps-filament-dropdown-column/health.svg)

```
[![Health](https://phpackages.com/badges/microweber-deps-filament-dropdown-column/health.svg)](https://phpackages.com/packages/microweber-deps-filament-dropdown-column)
```

###  Alternatives

[highideas/laravel-users-online

This package will provide an online users management.

203113.2k1](/packages/highideas-laravel-users-online)[stephenjude/filament-blog

Filament Blog Builder

20317.8k](/packages/stephenjude-filament-blog)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
