php - problem from sending data from form via "POST" method to the controller. print_r($request) in controller shows up instead of the data provided
one text
Solution:
it is not an error it is exactly what is inside $request. $request is an object of Illuminate\Http\Request that contains many information about your header like pathInfo,requestUri,DOCUMENT_ROOT,REMOTE_ADDR and many other parameters and functions. if you want to see $_post data just do this:
print_r($request->all())