app->singleton('activity', function () { return $this->app->make(ActivityService::class); }); $this->app->singleton('images', function () { return $this->app->make(ImageService::class); }); $this->app->singleton('permissions', function () { return $this->app->make(PermissionService::class); }); $this->app->singleton('theme', function () { return $this->app->make(ThemeService::class); }); } }