wallacemartinss / filament-icon-picker
A beautiful icon picker component for Filament v4 using blade-ui-kit/blade-icons
Installs: 22
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/wallacemartinss/filament-icon-picker
Requires
- php: ^8.2
- blade-ui-kit/blade-icons: ^1.0
- filament/filament: ^4.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- orchestra/testbench: ^10.0
- phpunit/phpunit: ^11.0
Suggests
- blade-ui-kit/blade-heroicons: Heroicons - 1300+ icons (recommended)
- blade-ui-kit/blade-tabler-icons: Tabler Icons - 4400+ icons
- codeat3/blade-bootstrap-icons: Bootstrap Icons - 2000+ icons
- codeat3/blade-google-material-design-icons: Google Material Design - 10000+ icons
- codeat3/blade-phosphor-icons: Phosphor Icons - 9000+ icons
- codeat3/blade-remix-icon: Remix Icons - 2800+ icons
- mallardduck/blade-lucide-icons: Lucide Icons - 1400+ icons
- owenvoke/blade-fontawesome: Font Awesome - 2800+ icons
README
A beautiful, modern icon picker component for Filament v4, powered by blade-ui-kit/blade-icons.
Features
- 🎨 Beautiful Modal Interface - Modern, responsive grid layout with smooth animations
- 🔍 Smart Search - Real-time filtering by icon name
- 📦 Multiple Icon Sets - Support for all blade-icons packages (Heroicons, FontAwesome, Phosphor, Material, etc.)
- 🎯 Set Filtering - Filter icons by their provider using dropdown
- ⚡ Infinite Scroll - Performance-optimized with lazy loading
- 🖼️ Preview - Shows selected icon in the field
- 📋 Form Field - Use in Filament forms
- 📊 Table Column - Display icons in tables
- 📝 Infolist Entry - Show icons in infolists (read-only)
- ⚙️ Configurable - Customize modal size, columns, and available icon sets
Requirements
- PHP 8.2+
- Laravel 11+
- Filament 4.0+
- blade-ui-kit/blade-icons 1.0+
Installation
Step 1: Install the package via Composer
composer require wallacemartinss/filament-icon-picker
Step 2: Install icon packages (Interactive)
You need at least one icon package to use the Icon Picker. Use the interactive installer:
php artisan filament-icon-picker:install-icons
This will show you an interactive menu to select which icon packages to install:
🎨 Filament Icon Picker - Install Icons
? Select icon packages to install:
● Heroicons - Heroicons by Tailwind CSS (~1,300 icons)
○ Fontawesome - Font Awesome (Solid, Regular, Brands) (~2,800 icons)
○ Phosphor - Phosphor Icons (~9,000 icons)
○ Material - Google Material Design (~10,000 icons)
○ Tabler - Tabler Icons (~4,400 icons)
○ Lucide - Lucide Icons (~1,400 icons)
Other options:
# List available packages and their status php artisan filament-icon-picker:install-icons --list # Install all icon packages at once php artisan filament-icon-picker:install-icons --all
Or install manually via Composer:
# Heroicons (recommended) composer require blade-ui-kit/blade-heroicons # Font Awesome (2800+ icons) composer require owenvoke/blade-fontawesome # Phosphor Icons (9000+ icons) composer require codeat3/blade-phosphor-icons # Google Material Design Icons (10000+ icons) composer require codeat3/blade-google-material-design-icons # Tabler Icons (4400+ icons) composer require blade-ui-kit/blade-tabler-icons # Lucide Icons (1400+ icons) composer require mallardduck/blade-lucide-icons
See all available icon packages at Blade Icons.
Step 3: Add package views to your Tailwind CSS configuration
Add the plugin's views to your theme CSS file so Tailwind can scan them:
/* resources/css/filament/admin/theme.css */ @source '../../../../vendor/wallacemartinss/filament-icon-picker/resources/views/**/*';
Step 4: Build your assets
npm run build
Step 5: (Optional) Publish the config file
php artisan vendor:publish --tag="filament-icon-picker-config"
Step 6: Clear caches
php artisan optimize:clear
Step 7: (Optional) Cache icons for better performance
php artisan icons:cache
Usage
Form Field
use Wallacemartinss\FilamentIconPicker\Forms\Components\IconPickerField; public static function form(Form $form): Form { return $form ->schema([ IconPickerField::make('icon') ->label('Select an Icon') ->required(), ]); }
Restricting Icon Sets
IconPickerField::make('icon') ->allowedSets(['heroicons', 'fontawesome-solid', 'phosphor-icons'])
Custom Modal Size
IconPickerField::make('icon') ->modalSize('5xl') // sm, md, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl
With Placeholder
IconPickerField::make('icon') ->placeholder('Choose an icon...')
Hide Set Filter
IconPickerField::make('icon') ->showSetFilter(false)
Table Column
use Wallacemartinss\FilamentIconPicker\Tables\Columns\IconPickerColumn; public static function table(Table $table): Table { return $table ->columns([ IconPickerColumn::make('icon') ->label('Icon'), ]); }
Infolist Entry
use Wallacemartinss\FilamentIconPicker\Infolists\Components\IconPickerEntry; public static function infolist(Infolist $infolist): Infolist { return $infolist ->schema([ IconPickerEntry::make('icon') ->label('Icon'), ]); }
Configuration
The config file allows you to customize the picker behavior:
// config/filament-icon-picker.php return [ /* |-------------------------------------------------------------------------- | Allowed Icon Sets |-------------------------------------------------------------------------- | | Define which icon sets should be available in the picker. | Leave empty array [] to allow all installed blade-icon sets. | | Important: Use the exact set name, not the package name! | Examples: | - 'heroicons' (from blade-heroicons) | - 'fontawesome-solid', 'fontawesome-regular', 'fontawesome-brands' (from blade-fontawesome) | - 'phosphor-icons' (from blade-phosphor-icons) | - 'google-material-design-icons' (from blade-google-material-design-icons) | */ 'allowed_sets' => [], /* |-------------------------------------------------------------------------- | Icons Per Page |-------------------------------------------------------------------------- | | Number of icons to load initially and on each scroll batch. | Increase for faster browsing, decrease for better performance. | */ 'icons_per_page' => 100, /* |-------------------------------------------------------------------------- | Column Layout |-------------------------------------------------------------------------- | | Number of columns in the icon grid for different screen sizes. | */ 'columns' => [ 'default' => 5, 'sm' => 7, 'md' => 9, 'lg' => 10, ], /* |-------------------------------------------------------------------------- | Modal Size |-------------------------------------------------------------------------- | | The size of the icon picker modal. | Options: 'sm', 'md', 'lg', 'xl', '2xl', '3xl', '4xl', '5xl', '6xl', '7xl' | */ 'modal_size' => '4xl', /* |-------------------------------------------------------------------------- | Cache Icons |-------------------------------------------------------------------------- | | Whether to cache the icon list for better performance. | Set to false during development if you're adding new icons frequently. | */ 'cache_icons' => true, /* |-------------------------------------------------------------------------- | Cache Duration |-------------------------------------------------------------------------- | | How long to cache the icon list (in seconds). | Default: 86400 (24 hours) | */ 'cache_duration' => 86400, ];
Finding Icon Set Names
To find the correct set names for your installed packages, run:
php artisan tinker
Then:
use Wallacemartinss\FilamentIconPicker\IconSetManager; $manager = new IconSetManager(); print_r($manager->getSetNames());
This will output all available set names like:
Array
(
[0] => heroicons
[1] => fontawesome-solid
[2] => fontawesome-regular
[3] => fontawesome-brands
[4] => phosphor-icons
[5] => google-material-design-icons
)
Troubleshooting
Icons not showing in the modal
- Make sure you have at least one blade-icons package installed
- Check that the set names in your config are correct (run the tinker command above)
- Clear caches:
php artisan optimize:clear
Modal styling looks broken
- Make sure you added the
@sourcedirective to your theme CSS - Rebuild assets:
npm run build - Clear view cache:
php artisan view:clear
Infinite scroll not working
- Clear browser cache with
Ctrl+Shift+R - Check browser console for JavaScript errors
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.