Create an App
Now that at least one user and one tenant have been set up, the first app can be created, which we can assign to a tenant.

php artisan noerd:create-app
The command asks for:
- App Title - Display name (e.g., "Customer Management")
- App Name - Unique identifier, uppercase (e.g., "CRM")
- Icon - Heroicon name (searchable)
- Route - Main route name (e.g., "crm.index")
Within that command, you can assign that app to one or more tenants. You can also do that later with another Artisan command.
php artisan noerd:assign-apps-to-tenant
If you visit /noerd-home again, you should now see your created app in the sidebar.
Next Steps
Continue with Create Navigation to define your app's navigation structure.