app->bind(SettingsService::class, function ($app) { return new SettingsService(); }); $this->app->bind(AuthService::class, function ($app) { return new AuthService(new SettingsService()); }); } /** * Bootstrap services. */ public function boot(): void { // } }