How to get body request parameters without the query string parameters in POST method.
when I used $request->all() it always returns all parameters including the Query string.
I have my own reason that's why I did not use $request->only([]) or $request->except([]). (cause I want to create a global function)
I want to get the body request parameters only... How to do that?