hi, im trying to use CloudExport package to directly save report into pdf file in server storage, but when i run the report, it just displaying the report without saving anything.
the code:
$report->run()
->cloudExport("FNA_PDF")
->chromeHeadlessio("xxxxxxxxxxxxxxxx")
->pdf()
->saveAs("../storage/app/tmp/".$file_nm.".pdf");
the result:
i have tried to use Excel Export and it run successfully
$report->run();
$report->exportToExcel("FNA_EXCEL")
->saveAs("../storage/app/tmp/".$file_nm.".xlsx");