this is my route i want to pass id using route
.state('app.profile', {
url: '/profile',
templateUrl: "assets/views/profile.html",
resolve: loadSequence('profileCtrl'),
})
my html in ng-repeat
<td data-title="'Profile'">
<nav id="cl-effect-13" class="links cl-effect-13">
<a ui-sref="app.profile">
<i class="ti-user"></i>
</a>
</nav>
</td>
this is my controller hear i want to get id
$scope.usersdata=function(val){
alert(val);
};