PHPackages                             bobimicroweber/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. bobimicroweber/filament-dropdown-column

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

bobimicroweber/filament-dropdown-column
=======================================

Use custom dropdowns on filament tables as column

0.0.2(1y ago)222.7k↓93.3%1MITPHPPHP ^8.1

Since Aug 1Pushed 1y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (13)Versions (3)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

29

—

LowBetter than 57% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Every ~0 days

Total

2

Last Release

701d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/50577633?v=4)[Bozhidar Slaveykov](/maintainers/bobimicroweber)[@bobimicroweber](https://github.com/bobimicroweber)

---

Top Contributors

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

---

Tags

laravelbobimicroweberfilament-dropdown-column

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

94135.4k5](/packages/marcelweidum-filament-expiration-notice)[biostate/filament-menu-builder

An Elegant Menu Builder for FilamentPHP

6528.1k2](/packages/biostate-filament-menu-builder)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)

PHPackages © 2026

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