Hello,
I was using phantomjs to convert to pdf using the code below - I want to convert the code to cloudexport
require_once(koolreport/core/autoload.php");
$clsExport = new \koolreport\instant\Exporter;
$clsExport::export("myfile.html");
->pdf($options)
->toBrowser("myFile.pdf",true);
But when I try this there is a error
require_once(koolreport/core/autoload.php");
$clsExport = new \koolreport\instant\Exporter;
$clsExport::export("myfile.html");
->chromeHeadlessio("my-token")
->pdf($options)
->toBrowser("myFile.pdf",true);
Please advise, Kris