I am having a heck of a time trying to figure out why I\'m getting the Unknown provider error in Angular. I\'ve checked every other question I could find on the subject and
Since you defined the factory called Employee, you should use the exact name to refer to this module when you inject it to the controller.
Employee
var employeeCtrl = app.controller('EmployeeCtrl', [ '$scope', 'employees',
Change to
var employeeCtrl = app.controller('EmployeeCtrl', [ '$scope', 'Employee',