You can do this
<div ng-repeat="item in items" ng-show="!$first">
<div>{{ item.value }}</div>
</div>
Here are the docs: http://docs.angularjs.org/api/ng.directive:ngRepeat
You can do this
<div ng-repeat="item in items" ng-show="!$first">
<div>{{ item.value }}</div>
</div>
Here are the docs: http://docs.angularjs.org/api/ng.directive:ngRepeat