I am using bootstrap and would like to ng-repeat through an array but i need to get the 2 values each loop. For the example i wish b.name to be booking[0] and the other b.name to be booking[1]. i am currently adding each row and then adding the value.
<div class="row" ng-repeat="b in booking">
<div class="col-sm-6">
<label><input icheck type="checkbox" ng-model="basicIntake.email_subscription">
{{b.name}}
</label>
</div>
<div class="col-sm-6">
<label><input icheck type="checkbox" ng-model="basicIntake.email_subscription">
{{b.name}}
</label>
</div>
</div>