Issues with Sending Multi-Dimensional Array Data in Laravel Request Using put Method
I'm working with Laravel and trying to send a PUT request to an API with the following code: $client->put('api_nginx/v1/countries/' . $id . '/update', [ 'json' => $request->all(), ]); The data being sent in the request ($request->all()) is as follows: {…