Hello Team, Happy New year, I am getting this error with the package KoolReport Pro 4.3.2.
Fatal error: Uncaught Error: Class 'koolreport\excel\Table' not found in
my code is as follows :
ListByPaymentCallsExcel.php
<?php
$sheet1 = "List Processed Scholarship";
?>
<meta charset="UTF-8">
<div sheet-name="<?php echo $sheet1;?>">
<?php
\koolreport\excel\Table::create(array(
"dataSource" => $this->dataStore('result'),
));
?>
</div>
and my export code :
require_once "reports/kreports/ListByPaymentCallsExcel.php";
$report = new ListByPaymentCalls(array(
"payment_call_id"=>$_GET['payment_call_id']
));
$report->run();
ob_clean();
$report->exportToXLSX('ListByPaymentCallsExcel')->toBrowser("MyReport.xlsx");
Why does it indicate the table is not available ?
Kindly help!