In Laravel, I\'m trying to call $input = Request::all(); on a store() method in my controller, but I\'m getting the following error:
$input = Request::all();
store()
The facade is another Request class, access it with the full path:
$input = \Request::all();
From laravel 5 you can also access it through the request() function:
request()
$input = request()->all();