Here is what I am trying to do:
Angularjs
$http.get("/api/comments/"+id)
.success(function(data){
$scope.comments = data;
})
And I have in laravel /api/comments/id route...
How can I take params with angularjs for example if user visit this url; /home/1 I need to take 1 and send to angular get request?