public function register() {
$this->app->singleton('Qwerty', function ($app) {
return new QwertyManager();
});
}
This is what my singleton class looks like now i want to reset the singleton object or destroy its instance via laravel. I am using 5.3