mdh-digital / mdh-excel
Laravel 包,用于导出大量 xlsx 和 csv 数据
dev-master
2023-08-20 07:29 UTC
Requires
- php: ^8.0
- illuminate/support: ^6.0 || ^7.0 || ^8.0 || ^9.0|^10.0
- openspout/openspout: ^4.1.1
Requires (Dev)
- illuminate/database: ^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0|^10.0
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: 3.*
This package is not auto-updated.
Last update: 2024-09-30 11:21:04 UTC
README
安装
Laravel
您可以使用 composer 命令安装它
composer require mdh-digital/mdh-excel
示例使用代码
use MdhDigital\MdhExcel\MdhExcelCreation;
$data = $this->query(); // Your Query or Data
$download = new MdhExcelCreation();
return $download->download([
'file_name' => 'download_md.xlsx',
'data' => $data,
'chunk' => 2500,
'custom_header' => array(
'status' => true,
'header' => [
array(
'label' => 'Date',
'value' => 'excel_date',
'type' => 'string',
'width' => 20,
),
array(
'label' => 'Ref No',
'value' => 'transaction.ref_no',
'type' => 'string',
'width' => 20,
),
array(
'label' => 'Store',
'value' => 'store.name',
'type' => 'string',
'width' => 20,
),
array(
'label' => 'Product Name',
'value' => 'full_name',
'type' => 'string',
'width' => 20,
),
array(
'label' => 'Sell Price',
'value' => 'excel_price',
'type' => 'string',
'width' => 20,
),
array(
'label' => 'Qty',
'value' => 'qty',
'type' => 'int',
'width' => 20,
),
array(
'label' => 'Subtotal',
'value' => 'excel_subtotal',
'type' => 'string',
'width' => 20,
),
]
),
'header_style' => array(
'status' => true,
'attribut' => array(
'bold' => true,
'italic' => false,
'underline' => false,
'font_name' => '',
'font_size' => 15,
'font_color' => 'WHITE',
'alignment' => 'center',
'vertical_alignment' => 'center',
'wrap_text' => false,
'bg_color' => 'LIGHT_BLUE'
)
),
'body_style' => array(
'status' => false
)
]);
许可证
这个 Laravel 的 Mdhexcel 包装器是开源软件,受 MIT 许可证的许可:MIT 许可证