AngularJS doesn't include a unique filter by default. You can use the one from angular-filter. Just include the JavaScript
and include the dependeny in your app:
var app = angular.module('myApp', ['angular.filter']);
Your code should work right away! I edited your Plunker so it works.