- PHP 8.2+
- Laravel v11.28+
- Tailwind CSS v4.1+
- Panel builder
- Individual components
Most people choose this option to build a panel (e.g., admin panel) for their app. The panel builder combines all the individual components into a cohesive framework. You can create as many panels as you like within a Laravel installation, but you only need to install it once.This will create and register a new Laravel service provider called Open
Installing the panel builder
Install the Filament Panel Builder by running the following commands in your Laravel project directory:app/Providers/Filament/AdminPanelProvider.php.You can create a new user account using the following command:/admin in your web browser, sign in, and start building your app!Publishing configuration
Filament ships with a configuration file that allows you to override defaults shared across all packages. Publish it after installing the panel builder so you can review and customize the settings:config/filament.php, where you can configure options like the default filesystem disk, file generation flags, and UI defaults. Re-run the publish command any time you want to pull in newly added configuration keys before tweaking them to suit your project.