Skip to content

An eloquent way of importing and exporting Word and RTF files for Laravel with the power of PHPWord

License

Notifications You must be signed in to change notification settings

VladisloveKeam/Laravel-Word

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Word v1.0.0 - in progres (refactoring from EXCEL to WORD)

Laravel Word brings the power of PHPOffice's PHPWord to Laravel 4 and 5 with a touch of the Laravel Magic. It includes features like: importing Word and RTF to collections, exporting models, array's and views to Word, importing batches of files and importing a file by a config file.

  • Import into Laravel Collections
  • Export Blade views to Word and RTF with optional CSS styling
  • Batch imports
  • A lot of optional config settings
  • Easy cell caching
  • Chunked importer
  • WordFile method injections (Laravel ~5.0)
  • Editing existing Word files
  • Advanced import by config files
  • and many more...

Word::create('Laravel Word', function($word) {

    $excel->section('Word section', function($section) {

        $section->setOrientation('landscape');

    });

})->export('doc');

Build Status Latest Stable Version Total Downloads License Monthly Downloads Daily Downloads

#Installation

Require this package in your composer.json and update composer. This will download the package and PHPExcel of PHPOffice.

"maveius/word": "~1.0.0"

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

'maveius\Word\WordServiceProvider',

You can use the facade for shorter code. Add this to your aliases:

'Word' => 'maveius\Word\Facades\Word',

The class is bound to the ioC as word

$word = App::make('word');

Documentation

The complete documentation can be found at: http://www.maveius.pl/laravel-word/docs

Contributing

ALL bug fixes should be made to appropriate branch (e.g. 1.2 for 1.2.* bug fixes). Bug fixes should never be sent to the master branch.

More about contributing can be found at: http://www.maveius.pl/laravel-word/docs/getting-started#contributing

License

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!

About

An eloquent way of importing and exporting Word and RTF files for Laravel with the power of PHPWord

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%