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 Illuminate\Http\Request; public function store(Request $request){ dd($request->all()); }
is same in context saying
use Request; public function store(){ dd(Request::all()); }