Skip to content

Admin Panel

Access the Panel Locally

The admin panel is available at https://conflux.local/admin. Credentials are read from .env:

Variable Default
ADMIN_EMAIL admin@conflux.local
ADMIN_PASSWORD conflux123!

If no admin user exists yet, seed one:

docker compose exec php php artisan db:seed --class=AdminSeeder

The seeder uses updateOrCreate and is safe to re-run.

Reset the Admin Password

Update ADMIN_PASSWORD in .env, then re-run the seeder:

docker compose exec php php artisan db:seed --class=AdminSeeder

Add a Filament Resource

docker compose exec php php artisan make:filament-resource ResourceName

The generated class is placed in app/Filament/Resources/ and is auto-discovered — no manual registration needed.

Add a Custom Page

docker compose exec php php artisan make:filament-page PageName

The generated class is placed in app/Filament/Pages/ and is auto-discovered.

See Also