Upload multiple files from Client to Server via API using HTTP guzzle in laravel 8
问题 I tested by postman to attach file with field fileupload[0](see screenshot below) that works fine, request is added and fileupload also uploaded to server. But I want to call that upload file api by my laravel HTTP Client I have tried below code $result = Http::attach( 'attachment', $request->fileupload )->asForm()->post('http://192.168.1.100/api/request/store', $form_param); my control in form upload: <input type="file" name="fileupload[]" multiple> But it seem like API server does not get