<div class="workTime-row" ng-repeat="worktime in doctor.shifts">
<input type="text" class="form-control" ng-model="worktime.workDays" multiple>
<input type="text" class="form-control" ng-model="worktime.workFrom">
<input type="text" class="form-control" ng-model="worktime.workTo">
<span class="glyphicon glyphicon-plus glyph_size" ng-click="addWorkTime()" aria-hidden="true"></span>
</div>
I am exploring Angular and need help creating a dynamic form that can add new rows on click of the plus icon. I do not have data to fetch, just want to dynamically add rows with specific fields upon clicking the plus icon. Any tips or scripts would be much appreciated.