When I click on ng-click, the model changes but the HTML remains the same...
HTML
<p>Reserved:<span>{{seatsInfo}}</span></p>
<div ng-click="change()">change</div>
JavaScript
$scope.seatsInfo = 20;
$scope.change = function(){
$scope.seatsInfo = 30;
console.log($scope.seatsInfo);
}