32

According to the Laravel documentation Request is acquired via dependency injection. For a controller this is fine, but how do we access Request object outside a controller, for example in a view

2
  • 1
    Simply, Request::input('field'). Commented Jul 12, 2016 at 3:53
  • @IsmailRBOUH input is not a static method Commented Jul 12, 2016 at 21:43

3 Answers 3

76

There is request helper in laravel. You can use Request Object anywhere. For example

request()->field_name 

Here's laravel documentation link for request helper https://laravel.com/docs/5.2/helpers#method-request

Sign up to request clarification or add additional context in comments.

2 Comments

This doesn't work in lumen :/ You have to use app()->request. Look Helpers.php
this is sooooo useful for me to know! [+1]
4

Lumen doesn't have this Helper "request()".

You must use like this:

app()->request->field_name

Comments

3

What worked out for me is:

request('field_name')

Reference: https://laravel.com/docs/9.x/helpers#method-request

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.