I am trying to filter an ng-repeat using a variable.
ng-repeat="data in datas | filter:{type:@{{someType}}}"
I am using blade template which explains the @. When I hard code the type value I want to filter it works. Not with the variable though.
What am I missing?
Thanks!