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()
use the request() helper instead. You don't have to worry about use statements and thus this sort of problem wont happen again.
request()
use
$input = request()->all();
simple