I mean that in Marionette you can set View-Collection-Model mapping, and when you call collection.remove(model)
Marionette find and delete model from collection, sent delete request to the server and finally update the view which displays collection items.
Does Angular has same functionality?
Or I have to find deleting element in $scope.collection
and remove it, delete it from server and manually update the view?