What is meant by Retrieving Input ?
Answer / 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 |
What are the applications supported by valet?
Do you know what is the latest version of laravel?
Do you know what is luman?
What is Named Routes.
What is laravel cms?
What is laravel elixir?
Is laravel better than wordpress?
How to check composer is installed or not in laravel?
What is csrf protection?
What is the difference between forget() and the pull() method ?
How can we check the logged-in user info in laravel?
What is the directory structure of laravel 5.6?