Camelot reading

This commit is contained in:
2021-11-02 15:37:36 -03:00
parent 5ee267568a
commit 0c44554375
18 changed files with 121 additions and 22 deletions

View File

@ -24,7 +24,7 @@ class PdfHandler {
$output []= ['filename' => $file->getBasename()];
}
$response = $this->client->post($this->url, ['json' => ['files' => $output]]);
!d(json_decode($response->getBody()));
$output = json_decode($response->getBody());
return $output;
}
}