sumardi / filament-starter-kit
Filament starter kit for the Laravel framework.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
pkg:composer/sumardi/filament-starter-kit
Requires
- php: ^8.4
- filament/filament: ^4.1
- filament/spatie-laravel-media-library-plugin: ^4.2
- filament/spatie-laravel-settings-plugin: ^4.0
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- mallardduck/blade-lucide-icons: ^1.24
- nunomaduro/essentials: ^1.0
- spatie/laravel-activitylog: ^4.10
- spatie/laravel-permission: ^6.23
- vemcogroup/laravel-translation: ^3.0
- ysfkaya/filament-phone-input: ^4.0
Requires (Dev)
- driftingly/rector-laravel: ^2.1
- fakerphp/faker: ^1.23
- larastan/larastan: ^3.0
- laravel/pail: ^1.2.2
- laravel/pint: ^1.24
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^4.1
- pestphp/pest-plugin-laravel: ^4.0
- pestphp/pest-plugin-livewire: ^4.0
- rector/rector: ^2.2
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