pishgaman / sheet
This is a comprehensive Laravel package for getting Excel and PDF output. phpspreadsheet And mpdf are the libraries used in this package.
dev-main
2021-08-22 05:12 UTC
Requires
- php: ^7.0|^8.0
This package is auto-updated.
Last update: 2025-03-22 12:48:21 UTC
README
This is a comprehensive Laravel package for getting Excel and PDF output. phpspreadsheet And mpdf are the libraries used in this package.
How to Install Your Project
composer require pishgaman/sheet
How to Use
Export Excel
$sheet =\App::make(SheetInterface::class);
$Spreadsheet = $sheet->init();
$spreadsheet = $sheet->createSheet($Spreadsheet,'test');
$arrayData = [];
$arrayData[0] =['name'];
$spreadsheet = $sheet->arrayExport($spreadsheet,$arrayData,0);
$sheet->createWriter($spreadsheet);