Sagar
Sagar

Reputation: 1335

laravel4 Request::get api documentation

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

Answers (2)

netvision73
netvision73

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

Laurence
Laurence

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

Related Questions