app->singleton(ThemeService::class, fn ($app) => new ThemeService()); } /** * Bootstrap services. * * @return void */ public function boot() { // Boot up the theme system $themeService = $this->app->make(ThemeService::class); $themeService->readThemeActions(); $themeService->dispatch(ThemeEvents::APP_BOOT, $this->app); } }