🎨
Laravel Filament Commands
Filament Admin Panel commands for Laravel applications
15 commands found
/ to searchEscto clear
composer require filament/filament
Install Filament admin panel
composer require filament/filament:"^3.0" -Wphp artisan filament:install
Install and configure Filament panel
php artisan filament:install --panelsphp artisan make:filament-user
Create a new Filament admin user
php artisan make:filament-userphp artisan make:filament-resource
Create a new Filament resource
php artisan make:filament-resource Postphp artisan make:filament-page
Create a new Filament custom page
php artisan make:filament-page Settingsphp artisan make:filament-widget
Create a new Filament dashboard widget
php artisan make:filament-widget StatsOverview --stats-overviewphp artisan make:filament-relation-manager
Create a relation manager for resource
php artisan make:filament-relation-manager PostResource comments titlephp artisan make:filament-theme
Create a custom Filament theme
php artisan make:filament-themephp artisan filament:upgrade
Upgrade Filament to latest version
php artisan filament:upgradephp artisan filament:assets
Publish Filament assets
php artisan filament:assetsphp artisan filament:cache-components
Cache Filament component configurations
php artisan filament:cache-componentsphp artisan filament:clear-cached-components
Clear cached Filament components
php artisan filament:clear-cached-componentsphp artisan make:filament-page-action
Create a custom page action
php artisan make:filament-page-action ExportUsersphp artisan filament:optimize
Optimize Filament for production
php artisan filament:optimizephp artisan make:filament-table-action
Create a custom table action
php artisan make:filament-table-action ArchivePost