dcrepper / filament-starter-kit
The skeleton application for the Laravel framework.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Type:project
Requires
- php: ^8.2
- filament/filament: ^3.3
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- livewire/livewire: ^3.6
Requires (Dev)
- driftingly/rector-laravel: ^2.0
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.22
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^3.8
- pestphp/pest-plugin-laravel: ^3.2
- rector/rector: ^2.0
This package is auto-updated.
Last update: 2025-05-03 22:51:48 UTC
README
Filament Starter Kit is a distribution of Filament with a variety of pre-installed components. And remember, simple things are the best for your starting point.
New Installation
To install Filament Starter Kit, use the following composer command:
composer create-project dcrepper/filament-starter-kit
After installation, run migrations:
php artisan migrate
Create the first/admin user:
php artisan make:filament-user
Initialize Filament Shield:
php artisan shield:install
During the Filament Shield installation, respond with "yes" to all the questions.
Seed First Tenant
Customize your tenant team name in database\Seeders\FirstTenantSeeder
. The default team name is 'Min Shin Saw'.
Team::create([ 'name' => 'dev', 'slug' => 'dev', ])->users()->attach(User::find(1));
Then run the following command:
php artisan db:seed
Visit /admin
on your site, and you should 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 the Spatie packages, is based on another package, the base package migrations and config files are also published.
Production Section
When it comes to production, make sure you implement FilamentUser in your User Model, and add canAccessPanel function reference: https://filamentphp.com/docs/3.x/panels/installation#deploying-to-production
License
The MIT License. Please see the license file for more information.