You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Panel Generation and Registration Improvements: (#139)
- Added Automatic Discovery of all module panels to avoid manual
registration in providers.php. This ensures modules are completely
decoupled from the main app
- Panel Generation: Added ability to pass an input option to specify the
Panel Label, which is used in the Main navigation as well as the brand
name of the panel
- Removed the code to auto-add the panels to bootstrap/providers.php
file
$this->components->info("Filament panel [{$path}] created successfully.");
170
-
171
-
if ($hasBootstrapProvidersFile) {
172
-
$this->components->warn("We've attempted to register the {$basename} in your [bootstrap/providers.php] file. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the array.");
173
-
} else {
174
-
$this->components->warn("We've attempted to register the {$basename} in your [config/app.php] file as a service provider. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the [providers] array.");
0 commit comments