sumardi / filament-starter-kit
Filament starter kit for the Laravel framework.
Package info
github.com/sumardi/filament-starter-kit
Type:project
pkg:composer/sumardi/filament-starter-kit
1.1.0
2026-08-07 02:45 UTC
Requires
- php: ^8.4
- filament/filament: ^5.7.3
- filament/spatie-laravel-media-library-plugin: ^5.7.3
- filament/spatie-laravel-settings-plugin: ^5.7.3
- laravel/framework: ^13.21.1
- laravel/tinker: ^3.0.2
- mallardduck/blade-lucide-icons: ^1.26.30
- nunomaduro/essentials: ^1.2
- spatie/laravel-activitylog: ^4.12.3
- spatie/laravel-permission: ^6.25
- vemcogroup/laravel-translation: ^3.1.1
- ysfkaya/filament-phone-input: ^4.2.1
Requires (Dev)
- driftingly/rector-laravel: ^2.5
- fakerphp/faker: ^1.24.1
- larastan/larastan: ^3.10
- laravel/pail: ^1.2.7
- laravel/pint: ^1.29.3
- laravel/sail: ^1.64
- mockery/mockery: ^1.6.12
- nunomaduro/collision: ^8.9.5
- pestphp/pest: ^4.7.5
- pestphp/pest-plugin-laravel: ^4.1
- pestphp/pest-plugin-livewire: ^4.1
- rector/rector: ^2.5.7
README
Kickstart your project with pre-configured Filament admin panel. Only essential development tools are included.
Note
Requires PHP 8.4 or higher.
What's Included
Core Dependencies
- Laravel 12.x - The PHP framework
- FilamentPHP 4.x - Admin panel with SPA mode, custom theme, and MFA enabled
- nunomaduro/essentials - Better Laravel defaults (strict models, auto-eager loading, immutable dates)
Development Tools
- laravel/sail - Docker-based development environment
- larastan/larastan - Static analysis
- laravel/pint - Code style fixer
- pestphp/pest - Testing framework
- rector/rector - Automated refactoring
- vemcogroup/laravel-translation - Scan your app for translations and create your *.json file
Quick Start
If you have installed PHP and Composer, you may create a new project using the Composer create-project command:
composer create-project sumardi/filament-starter-kit your-project-name
cd your-project-name
composer install
npm install
npm run build
php artisan serve
Or, you may create a new project using the Laravel Installer:
composer global require laravel/installer
laravel new your-project-name --using=sumardi/filament-starter-kit
cd your-project-name
php artisan serve