Here my code useing in php
@for($i= 0; $i < 15; $i++)
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
@endfor
but I want write it with angular+HTML
I trying this but not work
<tr ng-repeat="rows in other_line">
<td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
In my controller
$scope.other_line =15;
please help me to resolve it. thanks