Body是json但request-> get()返回null

I posted an object from postman to controller with Laravel 5.2 but when i want to get an field with $request->get('receiver_name') response return null

postman screen shot :

enter image description here

Your problem is caused by the value of the field "receiver_cell_phone" which is invalid, because it is a number starting with a zero.

In short, in JSON leading zeros are not supporting. If you have a field that may have leading zeros, treat it as a string.

Change your post field to:

"receiver_cell_phone": "0983242342"