I am using KoolReport Laravel page to generate report.
Koolreport has DataTables class but when i use it i got the error :
Class 'DataTables' not found (View: C:\xampp\htdocs\invoice\resources\views\reports\report.blade.php)
My code :
<html>
<head>
<title>My Report</title>
</head>
<body>
<h1>It works</h1>
<?php
DataTables::create([
"dataSource"=>$this->dataStore("users"),
"options"=>array(
"paging"=>true
)
]);
?>
</body>
</html>