fengxw/awesome-export-excel

The easier way to export excel

v0.2.3 2018-07-04 14:30 UTC

This package is auto-updated.

Last update: 2025-05-10 17:53:38 UTC


README

It's an easier way to export an excel. you don't need to worry about the detail, the default style of excel is enough for you.

Install

composer require fengxw/awesome-export-excel

Usage

// define the arguments.
$header = 'It is a header';
$title = ['column1', 'column2'];
$data = [['value1', 'value2']];

// export excel
ExportExcel::getInstance()->export($header, $title, $data);

simple

One More thing

Maybe you has a complex form need to export, then you can check the examples and build the sheet as you want.

complex