PHP code example of koolreport / blade

1. Go to this page and download the library: Download koolreport/blade library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

koolreport / blade example snippets

bash
project/
├── reports/
│   └── MyReport.php
├── views/
│   └── myreport.blade.php
├── cache/



class MyReport extends \koolreport\KoolReport
{
    use \koolreport\blade\Engine;
    
    protected function bladeInit()
    {
        $viewsFolder = __DIR__."/../views";
        $cacheFolder = __DIR__."/../cache";
        $blade = new \Jenssegers\Blade\Blade($viewsFolder, $cacheFolder);
        return $blade;
    }
    ...

}

<html>
<head>
    <title>MyReport</title>
</head>
<body>
    
    \koolreport\widgets\koolphp\Table::create(array(
        "dataSource"=>$report->dataStore("result"),
    ));
    

//index.php

ew MyReport;
$report->run()->render("myreport"); // You need to specify the view you want to render