PHPackages                             tomatophp/filament-icons - 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. tomatophp/filament-icons

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

tomatophp/filament-icons
========================

Picker &amp; Table Column &amp; Icons Provider for FilamentPHP

4.0.0(10mo ago)38115.1k↓39.1%5[4 PRs](https://github.com/tomatophp/filament-icons/pulls)13MITPHPPHP ^8.2|^8.3|^8.4CI passing

Since May 9Pushed 1w ago2 watchersCompare

[ Source](https://github.com/tomatophp/filament-icons)[ Packagist](https://packagist.org/packages/tomatophp/filament-icons)[ GitHub Sponsors](https://github.com/fadymondy)[ RSS](/packages/tomatophp-filament-icons/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (10)Dependencies (14)Versions (17)Used By (13)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/fadymondy-tomato-icons.jpg)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/fadymondy-tomato-icons.jpg)

Filament Icons Picker &amp; Provider
====================================

[](#filament-icons-picker--provider)

[![Latest Stable Version](https://camo.githubusercontent.com/03587bc34f6659889f4351ccf76b30cedd52d0aed3a8e2a2969abd45f7debea9/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d69636f6e732f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-icons)[![License](https://camo.githubusercontent.com/9e0c75a7a12b76cc6a2ea718d2194a41e0c0ec87d04ec67f423d325dcdb04ac8/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d69636f6e732f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-icons)[![Downloads](https://camo.githubusercontent.com/768d00db561e658a4f45d46018111381b2819283fc17c07f9cced1a17bbb48a2/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d69636f6e732f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-icons)[![Dependabot Updates](https://github.com/tomatophp/filament-icons/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/tomatophp/filament-icons/actions/workflows/dependabot/dependabot-updates)[![PHP Code Styling](https://github.com/tomatophp/filament-icons/actions/workflows/fix-php-code-styling.yml/badge.svg)](https://github.com/tomatophp/filament-icons/actions/workflows/fix-php-code-styling.yml)[![Tests](https://github.com/tomatophp/filament-icons/actions/workflows/tests.yml/badge.svg)](https://github.com/tomatophp/filament-icons/actions/workflows/tests.yml)

Picker &amp; Table Column &amp; Icons Provider for FilamentPHP

Screenshots
-----------

[](#screenshots)

[![Dark Input](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-dark.png)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-dark.png)

[![Dark Input Select](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-select-dark.png)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-select-dark.png)

[![Light Input](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-light.png)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-light.png)

[![Light Input Select](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-select-light.png)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/input-select-light.png)

[![Table Column](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/column.png)](https://raw.githubusercontent.com/tomatophp/filament-icons/master/arts/column.png)

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

[](#installation)

```
composer require tomatophp/filament-icons
```

after install use this command to cache all icons

```
php artisan filament-icons:install
```

Usage
-----

[](#usage)

```
use TomatoPHP\FilamentIcons\Components\IconPicker;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            IconPicker::make('icon')
                ->default('heroicon-o-academic-cap')
                ->label('Icon'),
        ]);
}
```

```
use TomatoPHP\FilamentIcons\Components\IconColumn;

public static function table(Table $table): Table
{
    return $table
        ->columns([
            IconColumn::make('icon')
                ->label('Icon'),
        ]);
}
```

Add Custom Icons
----------------

[](#add-custom-icons)

you can add a custom icon lib by use this Facade class inside your provider like this

```
use TomatoPHP\FilamentIcons\Facades\FilamentIcons;

public function boot(): void
{
    FilamentIcons::register('boxicons')
        ->asset('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css')
        ->template('', 'text-xl', 'text-sm')
        ->icons([
            "bx bx-accessibility",
            "bx bx-add-to-queue",
            "bx bx-adjust"
        ])
        ->replace(['bx ', 'bxs-', 'bxl-', 'bx-'])
        ->save();
}
```

than you need to clear cache by use this command

```
php artisan filament-icons:clear
```

to cache it again use this command

```
php artisan filament-icons:install
```

you can try add Box Icons using this snap [Box Icon Snap](boxicons-provider-snap.md)

Publish Assets
--------------

[](#publish-assets)

you can publish views file by use this command

```
php artisan vendor:publish --tag="filament-icons-views"
```

Publish Config
--------------

[](#publish-config)

you can publish config file by use this command

```
php artisan vendor:publish --tag="filament-icons-config"
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

57

—

FairBetter than 98% of packages

Maintenance78

Regular maintenance activity

Popularity44

Moderate usage in the ecosystem

Community25

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 80% 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 ~47 days

Recently: every ~67 days

Total

11

Last Release

313d ago

Major Versions

v1.1.5 → 4.0.02025-08-26

PHP version history (2 changes)v1.0.0PHP ^8.1|^8.2

4.0.0PHP ^8.2|^8.3|^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (28 commits)")[![wallacemaxters](https://avatars.githubusercontent.com/u/5245865?v=4)](https://github.com/wallacemaxters "wallacemaxters (4 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")[![Ilnytskyi-Oleh](https://avatars.githubusercontent.com/u/44439724?v=4)](https://github.com/Ilnytskyi-Oleh "Ilnytskyi-Oleh (1 commits)")

---

Tags

filamentphpheroiconsiconicon-pickericonsicons-packtailwindcssphplaravelHeroiconscomponentfilamentfilamentphpicons picker

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tomatophp-filament-icons/health.svg)

```
[![Health](https://phpackages.com/badges/tomatophp-filament-icons/health.svg)](https://phpackages.com/packages/tomatophp-filament-icons)
```

###  Alternatives

[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12453.6k](/packages/jibaymcs-filament-tour)[asosick/filament-layout-manager

Allow users to create &amp; customize their own FilamentPHP pages composed of Livewire components

5822.2k3](/packages/asosick-filament-layout-manager)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

30136.4k](/packages/tapp-filament-google-autocomplete-field)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7981.8k6](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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