I have a multi dimensional array I want to print all data with check box. there is dietry_reqs array below in the code I want to create check box with these value which value is
you did not provided enough code but as far as i understand, you can do something like that:
<div ng-repeat="level1 in attendance"> <div ng-repeat="level2 in level1.dietry_reqs"> <input type="checkbox" value="{{level2.value}}">{{level2.name}} </div> </div>