I'm encountering an issue with Angular
Here is the function causing trouble:
$scope.loadChart=function(){
$http.get("tabla.php")
.success(function(dat){
$scope.tabla=dat;
});
};
Despite confirming that $scope.tabla isn't empty, I am unable to access $scope.tabla[0].id
Appreciate any help or insights. Thank you.