Commands.app
🎨

Laravel Filament Commands

Filament Admin Panel commands for Laravel applications

15 commands found
composer require filament/filament
Install Filament admin panel
Installation
composer require filament/filament:"^3.0" -W
php artisan filament:install
Install and configure Filament panel
Installation
php artisan filament:install --panels
php artisan make:filament-user
Create a new Filament admin user
User Management
php artisan make:filament-user
php artisan make:filament-resource
Create a new Filament resource
Resources
php artisan make:filament-resource Post
php artisan make:filament-page
Create a new Filament custom page
Pages
php artisan make:filament-page Settings
php artisan make:filament-widget
Create a new Filament dashboard widget
Widgets
php artisan make:filament-widget StatsOverview --stats-overview
php artisan make:filament-relation-manager
Create a relation manager for resource
Resources
php artisan make:filament-relation-manager PostResource comments title
php artisan make:filament-theme
Create a custom Filament theme
Customization
php artisan make:filament-theme
php artisan filament:upgrade
Upgrade Filament to latest version
Maintenance
php artisan filament:upgrade
php artisan filament:assets
Publish Filament assets
Maintenance
php artisan filament:assets
php artisan filament:cache-components
Cache Filament component configurations
Performance
php artisan filament:cache-components
php artisan filament:clear-cached-components
Clear cached Filament components
Performance
php artisan filament:clear-cached-components
php artisan make:filament-page-action
Create a custom page action
Actions
php artisan make:filament-page-action ExportUsers
php artisan filament:optimize
Optimize Filament for production
Performance
php artisan filament:optimize
php artisan make:filament-table-action
Create a custom table action
Actions
php artisan make:filament-table-action ArchivePost