Hi, I'm doing an app with Ionic1 and Angular1 and I want to reload all the controllers again when I log out. Thanks.
angular
.module('starter')
.controller('ProfilCtrl', ProfilCtrl);
function ProfilCtrl($scope){
var auth = uid;
$scope.logout = function(){
$state.go('welcome');
}
}