Admin panel, form builder and table builder for Laravel. Built with the TALL stack. Designed for humans.
Admin Panel • Documentation • Demo
composer require filament/filamentForm Builder • Documentation
composer require filament/formsTable Builder • Documentation
composer require filament/tablesNotifications • Documentation
composer require filament/notificationsSpatie Media Library Plugin • Documentation
composer require filament/spatie-laravel-media-library-pluginSpatie Settings Plugin • Documentation
composer require filament/spatie-laravel-settings-pluginSpatie Tags Plugin • Documentation
composer require filament/spatie-laravel-tags-pluginSpatie Translatable Plugin • Documentation
composer require filament/spatie-laravel-translatable-pluginIf you want to contribute to Filament packages, you may want to test it in a real Laravel project:
- Fork this repository to your GitHub account.
- Create a Laravel app locally.
- Clone your fork in your Laravel app's root directory.
- In the
/filamentdirectory, create a branch for your fix, e.g.fix/error-message.
Install the packages in your app's composer.json:
Now, run composer update.
Set up a Laravel app, and install the admin panel.
Now, if you want to check for missing Spanish translations, run:
php artisan filament:check-translations esThis will let you know which translations are missing for this locale. You can make a PR with the changes to this repository.
If you've published the translations into your app and you'd like to check those instead, try:
php artisan filament:check-translations es --source=app🐞 If you spot a bug, please submit a detailed issue, and wait for assistance.
🤔 If you have a question or feature request, please start a new discussion. We also have a Discord community. For quick help, ask questions in the appropriate channel.
🔐 If you discover a vulnerability, please review our security policy.

{ // ... "require": { "filament/filament": "*", }, "minimum-stability": "dev", "repositories": [ { "type": "path", "url": "filament/packages/*" } ], // ... }