I can't access my scope variable when i change views

What im trying to do is , i want to get the user data and paste it on my tab-dash, and it doesn’t seem to work.

here is my app.js

angular.module(‘starter’, [‘ionic’, ‘starter.controllers’, ‘starter.services’])

.run(function($ionicPlatform , $ionicPopup) {
$ionicPlatform.ready(function() {

 if( window.Connection) {
  if(navigator.connection.type == Connection.NONE) {
    $ionicPopup.confirm({
      title: 'No Internet Connection',
      content: 'Sorry, no Internet connectivity detected. Please reconnect and try again.'
    })
    .then(function(result) {
      if(!result || result) {
        ionic.Platform.exitApp();
      }
    });
  }
}	
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins && window.cordova.plugins.Keyboard) {
  cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
  cordova.plugins.Keyboard.disableScroll(true);
}
if (window.StatusBar) {
  // org.apache.cordova.statusbar required
  StatusBar.styleDefault();
}

});
})

.config(function($stateProvider, $urlRouterProvider) {

// Ionic uses AngularUI Router which uses the concept of states
// Learn more here: GitHub - angular-ui/ui-router: The de-facto solution to flexible routing with nested views in AngularJS
// Set up the various states which the app can be in.
// Each state’s controller can be found in controllers.js
$stateProvider
.state(‘login’, {
url: ‘/login’,
templateUrl: ‘templates/login.html’,
controller: ‘LoginCtrl’

})
// setup an abstract state for the tabs directive
.state(‘tab’, {
url: ‘/tab’,
abstract: true,
templateUrl: ‘templates/tabs.html’
})

// Each tab has its own nav history stack:

.state(‘tab.dash’, {
url: ‘/dash’,
views: {
‘tab-dash’: {
templateUrl: ‘templates/tab-dash.html’,
controller: ‘LoginCtrl’
}
}
})

.state(‘tab.chats’, {
url: ‘/chats’,
views: {
‘tab-chats’: {
templateUrl: ‘templates/tab-chats.html’,
controller: ‘ChatsCtrl’
}
}
})
.state(‘tab.chat-detail’, {
url: ‘/chats/:chatId’,
views: {
‘tab-chats’: {
templateUrl: ‘templates/chat-detail.html’,
controller: ‘ChatDetailCtrl’
}
}
})

.state(‘tab.account’, {
url: ‘/account’,
views: {
‘tab-account’: {
templateUrl: ‘templates/tab-account.html’,
controller: ‘AccountCtrl’
}
}
});

// if none of the above states are matched, use this as the fallback
$urlRouterProvider.otherwise(‘/login’);

});

and my cotroller.js

angular.module(‘starter.controllers’, )

.controller(‘DashCtrl’, function($scope) {})

.controller(‘ChatsCtrl’, function($scope, Chats) {
// With the new view caching in Ionic, Controllers are only called
// when they are recreated or on app start, instead of every page change.
// To listen for when this page is active (for example, to refresh data),
// listen for the $ionicView.enter event:
//
//$scope.$on(‘$ionicView.enter’, function(e) {
//});

$scope.chats = Chats.all();
$scope.remove = function(chat) {
Chats.remove(chat);
};
})

.controller(‘ChatDetailCtrl’, function($scope, $stateParams, Chats) {
$scope.chat = Chats.get($stateParams.chatId);
})

.controller(‘AccountCtrl’, function($scope) {
$scope.settings = {
enableFriends: true
};
})

.controller(‘LoginCtrl’, function($scope, LoginService, $ionicPopup, $state, $http) {
$scope.data = {};
$scope.user = {};
$scope.login = function() {
var username1 = $scope.data.username , password1 = $scope.data.password;
LoginService.loginUser(username1, password1).success(function(data) {

  	var link = 'http://ofuturenity.esy.es/admin/php/loginionic.php?username=' + username1 + '&password=' + password1;
  	$http.get(link).then(function (res){
  		 user = res.data;
      });
       
  	    var alertPopup = $ionicPopup.alert({
            title: 'Login Successful!',
            template: 'Welcome to Ofuturenity ' + user.name + ' ' + user.last + '!'
        });
  	
  	
  	$state.go('tab.dash');
    }).error(function(data) {
        var alertPopup = $ionicPopup.alert({
            title: 'Login failed!',
            template: 'Please check your credentials!'
        });
    });
}

})
;

and here is where i want to put it

Welcome to Ionic

<div class="card">	
                <div class="item item-text-wrap">
                   
  				<p>{{user.name}} miko</p>
                </div>
            </div>
<p>{{user.name}}
This is the Ionic starter for tabs-based apps. For other starters and ready-made templates, check out the <a href="http://market.ionic.io/starters" target="_blank">Ionic Market</a>.
</p>
<p>
  To edit the content of each tab, edit the corresponding template file in <code>www/templates/</code>. This template is <code>www/templates/tab-dash.html</code>
</p>
<p>
If you need help with your app, join the Ionic Community on the <a href="http://forum.ionicframework.com" target="_blank">Ionic Forum</a>. Make sure to <a href="http://twitter.com/ionicframework" target="_blank">follow us</a> on Twitter to get important updates and announcements for Ionic developers.
</p>
<p>
  For help sending push notifications, join the <a href="https://apps.ionic.io/signup" target="_blank">Ionic Platform</a> and check out <a href="http://docs.ionic.io/docs/push-overview" target="_blank">Ionic Push</a>. We also have other services available.
</p>