How do I get the ids of the selected items from the checkbox (es) to send to the backend and then remove it?
<a href="">
**O QUE PASSO POR PARAMETRO PARA A FUNÇÃO? **
<i class="material-icons" title="Remover" ng-
click="removeEntry(allEntries)">delete</i>
</a>
<tr ng-repeat="entry in allEntries | filter: search as results">
<td>
** OQUE EU PASSO NO MODEL DO CHECKBOX ?**
<input ng-model="???????" type="checkbox"
id="item-">
</td>
<td style="max-width: 100px">{{entry.value}}</td>
<td style="max-width: 100px">{{entry.type}}</td>
<td style="max-width: 100px">{{entry.date}}</td>
<td style="max-width: 100px">{{entry.category}}</td>
<td style="max-width: 100px">{{entry.description}}</td>
</tr>