How to filter data in ng-repeat table in angularjs
How to display data from the database say I have a column days such as 1, 2, 3, 4, 5 etc. I have to display the data based on that column filter like one table is above 5 days and the other table is below 5 days.
Here, days column is int variable.
<tr ng-repeat="ps2 in paymentSplitups | filter : Days">
<td style="text-align:center;">{{ps2.Days}}</td>
How to show days which are only greater than 5