You have variables in your controller as shown below, i.e.
$scope.college_data = [{name: 'College 1', location:'Location 1', pincode:'499949'}, {name: 'College 2', location:'Location 2', pincode:'373737'}]
This is what you would do.,
<body ng-app="task"> <div ng-controller="AppCtrl" ng-cloak> <md-content class="md-padding"> <div ng-repeat="college in college_data"> <md-card-title layout="row" layout-align="start"> <md-checkbox md-no-ink aria-label="" ng-model="college.cb5" class="md-default"> </md-checkbox> <md-card-title-text layout="column"> <span class="md-headline">{{college.name}}</span> <span class="md-subhead">{{college.location}}, {{college.pincode}}</span> </md-card-title-text> </md-card-title> </div> </md-content>
See the white paper for more information. AngularJS Repeat
source share