Icons Picker & Provider
Picker & Table Column & Icons Provider for FilamentPHP
Author:
Fady Mondy
Documentation
- Screenshots
- Installation
- Usage
- Add Custom Icons
- Publish Assets
- Publish Config
- Other Filament Packages
![]()
Picker & Table Column & Icons Provider for FilamentPHP
#Screenshots
![]()
![]()
![]()
![]()
![]()
#Installation
composer require tomatophp/filament-icons
after install use this command to cache all icons
php artisan filament-icons:install
#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
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('<i class="{ ICON }"></i>', '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
#Publish Assets
you can publish views file by use this command
php artisan vendor:publish --tag="filament-icons-views"
#Publish Config
you can publish config file by use this command
php artisan vendor:publish --tag="filament-icons-config"
#Other Filament Packages
Checkout our Awesome TomatoPHP
The author
Picker & Table Column & Icons Provider for FilamentPHP
From the same author
Tenancy Multi-database
Tenancy multi-database integration for FilamentPHP
Author:
Fady Mondy
Menu Generator
Menu view generator using view component
Author:
Fady Mondy
Translations Manager
Manage your translation with DB and cache, you can scan an collect translation strings like `trans()` and `__()`, and translate them using UI
Author:
Fady Mondy
Meta Manager
Convert any model on your app to pluggable model using Meta and get ready to use relation manager on FilamentPHP panel
Author:
Fady Mondy
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle