mergeConfigFrom(__DIR__ . '/../../config/core.php', 'core'); } public function boot(): void { $this->loadViewsFrom(__DIR__ . '/../../resources/views', 'core'); Blade::anonymousComponentPath(__DIR__ . '/../../resources/views', 'core'); $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); $this->publishes([ __DIR__ . '/../../config/core.php' => config_path('core.php'), ], 'core-config'); $this->publishes([ __DIR__ . '/../../resources/logos' => public_path('static/logos/core'), __DIR__ . '/../../resources/js/stoic_embed.js' => public_path('js/stoic_embed.js'), ], 'core-assets'); if ($this->app->runningInConsole()) { $this->commands([AnonymizeCommand::class, ExportCommand::class, ExportCleanupCommand::class, ImportCommand::class, MigrateImportCommand::class]); //Overriding lunar:install $this->app->booted(fn () => $this->commands([InstallLunarCommand::class])); } } }