Encountering an error while using ng-table:
angular.js:12332 Error: [$injector:unpr] Unknown provider: ngTableParamsProvider <- ngTableParams <- tableController
http://errors.angularjs.org/1.4.2/$injector/unpr?p0=ngTableParamsProvider%20%3C-%20ngTableParams%20%3C-%20tableController
The code snippet causing the error is:
angular.module('ngTableTutorial', ['ngTable'])
.controller('tableController', [ '$scope', '$filter', 'ngTableParams', function ($scope, $filter, ngTableParams) {
Looking for guidance on how to resolve this issue correctly.