app->singleton(AccountBalanceService::class, function ($app) { return new AccountBalanceService(); }); } /** * Get the services provided by the provider. * * @return array */ public function provides(): array { return [AccountBalanceService::class]; } }