| function getTotalAcres(id){ | |
| return $http.get(API_URL + 'loans/' + id + '/totalacres') | |
| .then(function(res){ | |
| console.log(res); | |
| return res.data; | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment