Filament Starter Kit is a distribution of Filament with a variety of pre-installed components. Simple things are the best for your starting point.
To install Filament Starter Kit, run:
composer create-project dcrepper/filament-starter-kit
After installation, run the migrations:
php artisan migrate
Create the first (admin) user:
php artisan make:filament-user
Then seed the database:
php artisan db:seed
Visit /admin
on your site to see the Filament login screen.
Log in with the user created in step #4.
All relevant migrations, views, and config files have been published to the main Laravel directory tree in the expected locations.
If a package (such as a Spatie package) is based on another package, the base package migrations and config files are also published.
For production, ensure you implement FilamentUser
in your User model and add the canAccessPanel
function.
See the Filament documentation for details.
The MIT License. Please see the license file for more information.