I'm looking to increment my input ID while using ng-repeat and I tried this but it doesn't work :
<div ng-repeat="d in index">
<input type="checkbox" name="name" value="" id="{{d}}" ng-model="{{d}}"/>
</div>
Do you have any ideas about how to do it?