oscarricardosan / report_man
Paquete para crear reportes
Installs: 213
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.6.4
- oscarricardosan/mapper: ^1.4
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2025-02-02 05:56:51 UTC
README
Laravel package.
Register Report_manServiceProvider in providers (config/app.php).
To use de default component to show the tables:
view('report_man::components/dashboard')
https://laravel.com/docs/master/packages#views
Need: Jquery, bootstrap and underscore Exec this script:
$.fn.renderTpl= function(data) { var tpl= ''; this.each(function(index, element) { var template= _.template($(this).html()); tpl+= template(data); }); return tpl; };
To export Excel needs http://www.maatwebsite.nl/laravel-excel/docs/getting-started#installation
"maatwebsite/excel": "~2.1.0",