/Starter

A filament starter with Multi-Tenant, Filament Shield, Filament Exception, Impersonate and Backgrounds

Primary LanguagePHP

Filament Starter

Filament Starter is a Filament distribution with lots of pre-installed.

New Installation

Run migrations

php artisan migrate

Create the first/admin user:

php artisan make:filament-user

Init FilamentShield

php artisan shield:install

For the FilamentShield install, answer "yes" to all questions it asks.

Seed First Tenant

You can customize your tenant team name at database\Seeders\FirstTenantSeeder IMX will be default

Team::create([
    'name' => 'IMX',
    'slug' => 'IMX',
])->users()->attach(User::find(1));

Then Run This

php artisan db:seed

You can now go to /admin on your site and you should see the filament login screen.