mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
34 lines
764 B
PHP
34 lines
764 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils\HostedPDF;
|
|
|
|
use GuzzleHttp\RequestOptions;
|
|
|
|
class NinjaPdf
|
|
{
|
|
private $url = 'https://pdf.invoicing.co/api/';
|
|
|
|
public function build($html)
|
|
{
|
|
$client = new \GuzzleHttp\Client(['headers' => [
|
|
'X-Ninja-Token' => 'test_token_for_now',
|
|
],
|
|
]);
|
|
|
|
$response = $client->post($this->url, [
|
|
RequestOptions::JSON => ['html' => $html],
|
|
]);
|
|
|
|
return $response->getBody()->getContents();
|
|
}
|
|
}
|