dev-master
9999999-devAn eloquent way of write and read Word in Laravel 4 with the power of PHPWord
LGPL
The Requires
- php >=5.3.0
- phpoffice/phpword v0.13.*
by Benny Bian
laravel word phpword
Wallogit.com
2017 © Pedro Peláez
An eloquent way of write and read Word in Laravel 4 with the power of PHPWord
Laravel PHP brings the power of PHPOffice's PHPWord https://github.com/PHPOffice/PHPWord to Laravel 4. It includes features like: ..., (*1)
Require this package in your composer.json and update composer. This will download the package and PHPExcel of PHPOffice., (*2)
"maatwebsite/excel": "~1.3.0"
After updating composer, add the ServiceProvider to the providers array in app/config/app.php, (*3)
'Maatwebsite\Excel\ExcelServiceProvider',
You can use the facade for shorter code. Add this to your aliases:, (*4)
'Excel' => 'Maatwebsite\Excel\Facades\Excel',
The class is bound to the ioC as excel, (*5)
$excel = App::make('excel');
This package is licensed under LGPL. You are free to use it in personal and commercial projects. The code can be forked and modified, but the original copyright author should always be included!, (*6)
An eloquent way of write and read Word in Laravel 4 with the power of PHPWord
LGPL
laravel word phpword