I have an array of products that I'm repeating over using ng-repeat and am using
<div ng-repeat="product in products | filter:company_filter">
The filter is working but i want to pass some parameters to my filter like product type, ...
How can i do ?