Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is meant by Retrieving Input ?

Answer Posted / amit khanna

The input values can be easily retrieved in Laravel.
No matter what method was used “get” or “post”, the Laravel method will retrieve input values for both the methods the same way.

There are two ways we can retrieve the input values.
Using the input() method
Using the properties of Request instance

Using the input() method

The input() method takes one argument, the name of the field in form. For example, if the form contains username field then we can access it by the following way.
$name = $request->input('username');

Using the properties of Request instance

Like the input() method, we can get the username property directly from the request instance.
$request->username

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a primary implication of a cross site request forgery attack?

645


What does orm stand for?

796


Can we assign multiple middlewares to a route.

730


How to check column is exists or not in a table using laravel?

721


What is automatic injection in laravel?

738


What is blade template engine?

690


What does csrf token in laravel 5?

749


How to install laravel?

737


What is auth?

986


How to retrive all requested data in laravel?

785


How to launch vagrant box?

705


How to Connecting to Database in Laravel ?

1836


Is multiple php versions are supported by homestead?

684


I just installed laravel and have the evil whoops error,how do I find out what’s wrong and fix it?

688


Explain the difference between laravel 4 and laravel 5?

777