Maybe I\'m missing some kind of property, but I\'m follow this project and I\'m getting this error in my controller.
TypeError: loginService.signin is not a
You are messing with Dependency injection array, that should follow correct order of dependency when you are using it in a function.
Code
angular.module('appcontrollers', []).controller('LoginController', ['$rootScope', '$scope', '$http', '$location', '$localStorage', 'loginService',
function ($rootScope, $scope, $http, $location, $localStorage, loginService) {