oscarricardosan/report_man

创建报告的包

v5.5.4 2018-02-02 15:49 UTC

This package is not auto-updated.

Last update: 2024-09-29 03:58:07 UTC


README

Laravel 包。

在 providers (config/app.php) 中注册 Report_manServiceProvider。

要使用默认组件显示表格

view('report_man::components/dashboard')

https://laravel.net.cn/docs/master/packages#views

需要:Jquery、bootstrap 和 underscore。执行此脚本:

$.fn.renderTpl= function(data) { var tpl= ''; this.each(function(index, element) { var template= _.template($(this).html()); tpl+= template(data); }); return tpl; };

要导出 Excel 需要 http://www.maatwebsite.nl/laravel-excel/docs/getting-started#installation

"maatwebsite/excel": "~2.1.0",