| Install | |
|---|---|
composer require filakitphp/basev4 |
|
| Latest Version: | 4.9.0 |
| PHP: | ^8.3 |

FilaKit is a robust starter kit built on Laravel 13.x and Filament 4.x, designed to accelerate the development of modern web applications with a ready-to-use panel structure.
/admin) - For authenticated usersconfig/filakit.php fileClone the repository
laravel new my-app --using=filakitphp/basev4 --database=mysql
Or use FilaKit CLI for a simplified setup:
filakit new my-app --kit=filakitphp/basev4
Install FilaKit CLI:
composer global require jeffersongoncalves/filakit-cli
FilaKit can be easily installed using the following command:
php install.php
This command automates the installation process by:
Install JavaScript dependencies
pnpm install
Install Composer dependencies
composer install
Set up environment
cp .env.example .env
php artisan key:generate
Configure your database in the .env file
Run migrations
php artisan migrate
Run the server
php artisan serve
# Run the development server with logs, queues and asset compilation
composer dev
# Or run each component separately
php artisan serve
php artisan queue:listen --tries=1
pnpm run dev
Panels can be customized through their respective providers:
app/Providers/Filament/AdminPanelProvider.phpAlternatively, these settings are also consolidated in the config/filakit.php file for easier management.
Each panel can have its own color scheme, which can be easily modified in the corresponding Provider files or in the
filakit.php configuration file.
The config/filakit.php file centralizes the configuration of the starter kit, including:
FilaKit includes support for:
This project is licensed under the MIT License.
Developed by Jefferson Gonçalves.