frode81 / Starter

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

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


Languages

Language:PHP 72.0%Language:JavaScript 14.4%Language:Blade 13.6%