Try to use ng-repeat
-
This is not working because you have used ng-model
on label
tag which is not possible.
ng-model
can be only used on input, select and textarea
as per This
you cannot use it on div's, ul, ol, tabel etc
.
Instead, to assign the value in label you can use ng-value
like this:
or to assign index
value to ng-model
you can do:
to display the index you can do:
{{$index}}