Reputation: 1335
i have 5+ yrs of experience on java but i am new to php and laravel both I am trying to explore laravel api documentation to get "Request::get" documentation but not able to get it. pls any one suggest the right way to explore api documentation.
Upvotes: 0
Views: 175
Reputation: 4921
There isn't any get
method usable as it in Request
. If you want to grab GET or POST inputs from a form or AJAX, use Input::get
=> http://laravel.com/docs/requests
Upvotes: 3
Reputation: 60048
Just use the search function on the Laravel API docs: http://laravel.com/api
Here is what you need: http://laravel.com/api/class-Illuminate.Http.Request.html
Upvotes: 0