I see that in spatie/laravel-settings you can configure multiple paths for the settings:
config/settings.php
'settings' => [
\user\package1\Settings\SignatureEmailSettings::class,
\user\package2\Settings\PricesNotificationSettings::class,
],
'auto_discover_settings' => [
realpath(__DIR__.'/../../package1/src/Settings'),
realpath(__DIR__.'/../../package2/src/Settings'),
],
But in this package (ferdiunal/nova-settings) you can't do that, it only allows you to load a route:
config/nova-settings.php
'setting_resource_class_path' => realpath(__DIR__.'/../src/NovaSettings'),
It would be nice if it allowed you to load multiple paths like in spatie/laravel-settings to handle multiple settings from different packages.
I see that in spatie/laravel-settings you can configure multiple paths for the settings:
config/settings.phpBut in this package (ferdiunal/nova-settings) you can't do that, it only allows you to load a route:
config/nova-settings.phpIt would be nice if it allowed you to load multiple paths like in spatie/laravel-settings to handle multiple settings from different packages.