What if you use $request->input('something') as described in the docs
https://laravel.com/docs/5.7/requests#retrieving-input
Oct 8, 2018
3
Level 1
$request->all() is not empty, but $request->get('something') is null
Hi, I'm using L5.7 Currently I have strange behavior in form request.
Usually it works to get form request data by calling $request->get('something')but currently when I call it, it returns null value
However when I call $request->all(), the form values are exists.
Any idea about this?
Please or to participate in this conversation.