Fork of Maatwebsite for reasons of incompatibility with php >= 7.4 --- of Supercharged Excel exports in Laravel
pamekar/excel is a Laravel package for fork of maatwebsite for reasons of incompatibility with php >= 7.4 --- of supercharged excel exports in laravel.
It currently has 0 GitHub stars and 14 downloads on Packagist (latest version v2.1).
Install it with composer require pamekar/excel.
Discover more Laravel packages by pamekar
or browse all Laravel packages to compare alternatives.
Last updated
Excel::create('Laravel Excel', function($excel) {
$excel->sheet('Excel sheet', function($sheet) {
$sheet->setOrientation('landscape');
});
})->export('xls');
Require this package in your composer.json and update composer. This will download the package and PHPExcel of PHPOffice.
composer require "convenia/excel:~2.2.*"
In Laravel 5.5 or higher, this package will be automatically discovered and you can safely skip the following two steps.
If using Laravel 5.4 or lower, after updating composer, add the ServiceProvider to the providers array in config/app.php
Maatwebsite\Excel\ExcelServiceProvider::class,
You can use the facade for shorter code; if using Laravel 5.4 or lower, add this to your aliases:
'Excel' => Maatwebsite\Excel\Facades\Excel::class,
The class is bound to the ioC as excel
$excel = App::make('excel');
To publish the config settings in Laravel 5 use:
php artisan vendor:publish --provider="Maatwebsite\Excel\ExcelServiceProvider"
This will add an excel.php config file to your config folder.
The complete documentation can be found at: https://laravel-excel.maatwebsite.nl/docs
MIT