from angular contoller I calling http service
curServices = Cust_Serv.get(id);
console.log(curServices);
My service calls like this
get:function(data){
        var id= {'id':data};
        var promise = $http.post('api/admin/cust_serv/getserv',id).
            success(function(response){
            }).
            error(function(){
                console.log('no services found');
            });
        return promise;
    },
I receive response object with $$state, catch, error, finally, success, then, proto. I need only the values that is inside $$state->value->data.
How to access that data?
