You're sending those as HEADER key/values? Should use RAW (JSON) or use the form-data boxes.
Example of form-data

Example of JSON

Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi Guys, I've just fixed my problem with csrf but now I am trying to send a post request from postman and if I try dd('store'), it works fine and I can see this result in postman. However, if I try with:
public function store(Request $request)
{
dd($request->all());
}
my result is that [], I can't see my data http://screencast.com/t/Edp7QAPmNwYL
You're sending those as HEADER key/values? Should use RAW (JSON) or use the form-data boxes.
Example of form-data

Example of JSON

Please or to participate in this conversation.