dcrepper/filament-starter-kit

The skeleton application for the Laravel framework.

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

Type:project

dev-main 2025-06-12 16:03 UTC

This package is auto-updated.

Last update: 2025-06-12 16:05:18 UTC


README

Filament Starter Kit is a distribution of Filament with a variety of pre-installed components. Simple things are the best for your starting point.

New Installation

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.

Production Section

For production, ensure you implement FilamentUser in your User model and add the canAccessPanel function.
See the Filament documentation for details.

License

The MIT License. Please see the license file for more information.