lightshire / laravel-phpexcel-wrapper
There is no license information available for the latest version (dev-master) of this package.
PHPOffice PHPExcel wrapper
dev-master
2014-03-13 20:11 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.x
- phpoffice/phpexcel: 1.8.0
This package is not auto-updated.
Last update: 2024-11-09 15:28:53 UTC
README
Installation
-
Require package via composer.json
lightshire/laravel-phpexcel-wrapper
-
Run composer update
$ composer update
-
Open app/config/app.php and add ServiceProvider to 'providers' array
'Lightshire\PHPExcel\ServiceProvider',
-
Optionally add to aliases
'Excel' => 'Lightshire\PHPExcel\Facade',
Usage
Create Excel xls file from array
Excel::fromArray( array(
array('1', '2', '3'),
array('X', 'Y', 'Z')
) )->save( base_path() . '/sample.xls' );
Create Excel xlsx file from array
Excel::fromArray( array(
array('Hello', 'World', '!!!'),
array('X', 'Y', 'Z')
) )->save( base_path() . '/sample.xlsx' );
Create array from Excel file
Excel::excel2Array( base_path() . '/sample.xls' );