├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── composer.json ├── composer.lock ├── config └── report-generator.php ├── readme.md ├── screenshots ├── report-with-group-by.png └── report-with-total.png └── src ├── Facades ├── CSVReportFacade.php ├── ExcelReportFacade.php └── PdfReportFacade.php ├── Lumen.php ├── ReportGenerator.php ├── ReportMedia ├── CSVReport.php ├── ExcelReport.php └── PdfReport.php ├── ServiceProvider.php └── views ├── general-excel-template.blade.php ├── general-pdf-template.blade.php ├── without-manipulation-excel-template.blade.php └── without-manipulation-pdf-template.blade.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | .DS_Store 4 | .idea/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/composer.lock -------------------------------------------------------------------------------- /config/report-generator.php: -------------------------------------------------------------------------------- 1 | false 5 | ]; 6 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/report-with-group-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/screenshots/report-with-group-by.png -------------------------------------------------------------------------------- /screenshots/report-with-total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/screenshots/report-with-total.png -------------------------------------------------------------------------------- /src/Facades/CSVReportFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/Facades/CSVReportFacade.php -------------------------------------------------------------------------------- /src/Facades/ExcelReportFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/Facades/ExcelReportFacade.php -------------------------------------------------------------------------------- /src/Facades/PdfReportFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/Facades/PdfReportFacade.php -------------------------------------------------------------------------------- /src/Lumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/Lumen.php -------------------------------------------------------------------------------- /src/ReportGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/ReportGenerator.php -------------------------------------------------------------------------------- /src/ReportMedia/CSVReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/ReportMedia/CSVReport.php -------------------------------------------------------------------------------- /src/ReportMedia/ExcelReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/ReportMedia/ExcelReport.php -------------------------------------------------------------------------------- /src/ReportMedia/PdfReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/ReportMedia/PdfReport.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/views/general-excel-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/views/general-excel-template.blade.php -------------------------------------------------------------------------------- /src/views/general-pdf-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/views/general-pdf-template.blade.php -------------------------------------------------------------------------------- /src/views/without-manipulation-excel-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/views/without-manipulation-excel-template.blade.php -------------------------------------------------------------------------------- /src/views/without-manipulation-pdf-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelterra22/laravel-report-generator/HEAD/src/views/without-manipulation-pdf-template.blade.php --------------------------------------------------------------------------------