我需要使用 pdf 导出选项报告 Laravel 包

I need reporting Laravel package with pdf export option

我需要一个报告 Laravel 包,我可以 link 我的项目能够生成 php 带有 pdf 导出选项的报告。代码示例将非常有帮助!

有许多 Laravel 包可用于报告,我相信以下包是一个很好的例子:

Smart Report Engine

A well-documented PHP 报告框架(有很多代码示例)。它可以作为本机 PHP 引擎和 laravel 包使用。这是一个代码示例,说明如何使用它将 SQL 查询转换为报告。

   $report = new ReportOptions(Constants::SRE_PUBLIC_REPORT, Constants::SRE_SQL,"SQL_01");
   $report->set_sql("select * from items where `Units_In_Stock` < 15 ")
          ->set_header("Header goes here")
          ->set_grouping(array("country"))                       
          ->label("id", "Product ID")
          ->select_all_fields();
   $engine = new CustomEngine($report);
   $report_path = $engine->create_report();

使用此引擎您可以生成 public 报告或将引擎与您现有的登录系统集成以生成私人报告。 Here is how

More code examples are available here.