G'day
I'm having problems with PUT requests made through the Chrome mail server to the controller, there is no PUT data, POST data is working fine.
I performed an update for the composer before making sure that the latest version of the vendorβs products, where bootstrap / compiled.php is available and even removed.
Does anyone have any other similar problems?
The update function indicating both section_id and the data in the response is empty:
public function update($id) { $section_id = Input::get('section_id'); $data = Input::all(); return Response::json(array('id' => $id, 'section_id' => $section_id, 'data' => $data)); }
I completely debugged the code to ParameterBag.php, and the list of parameters this this β request is empty, I'm not sure what should contain any values, but all the input values ββthrough the code are empty. Not sure what to do now without using a post instead of put.
Yasha nisanov
source share