Я использую Smart Report Engine в laravel для создания отчетов - PullRequest
0 голосов
/ 19 июня 2020

Я использую этот код, и он возвращает мне URL-адрес, он выглядит нормально и создает папку в public/sre_reports/ Но после URL-адреса я не вижу, что делать:

public function generatePublicReport() 
{
    try {
        $report = new ReportOptions(Constants::SRE_PUBLIC_REPORT);
        $report->select_tables(array("users"))
               ->set_grouping(array("id"))
               ->select_all_fields();
        $engine = new CustomEngine($report);
        $report_path = $engine->create_report();

        return "Your report URL:" . $report_path;
    } catch (Exception $ex) {
      echo "Caught exception message:".  $ex->getMessage();
    }
}

OutPut : URL вашего отчета: https://domainname.com/var/www/html/folder/public/sre_reports/rep1592553829503324/rep1592553829503324.php

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...