client = new Client(); } public function send() { $response = collect(); foreach ($this->recipients as $recipient) { $result = $this->client->request( 'POST', data_get($this->settings, 'url'), $this->payload($recipient) ); $response->put($recipient, json_decode((string) $result->getBody())); } return (count($this->recipients) == 1) ? $response->first() : $response; } protected function payload($recipient): array { return [ 'form_params' => [ 'token' => data_get($this->settings, 'token'), 'sendto' => $recipient, 'body' => $this->body, 'device_id' => data_get($this->settings, 'deviceid'), 'sim' => $this->sender, ], ]; } }