I would like to display the information from the database, it is correctly pulling information, and it is shown on the console that there is an array of 35 items to be shown but I am not able to display them in html.
<div ng-app="Chamados" ng-controller="Chamando">
<table>
<tr ng-repeat="chamado in CHAMADOS">
<td>{{chamado.STATUS}}</td>
</tr>
</table>
<script>
var app = angular.module("Chamados", []);
app.controller("Chamando", function($scope, $http) {
$http.get('caminhodoBanco'/*, JSON.stringify(data)*/).then(function (response) {
$scope.chamados = response.data.records;
}, function (response) {
});
});
</script>