mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			780 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			780 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. 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();
 | 
						|
    }
 | 
						|
 | 
						|
}
 |