convenia/excel

Fork of Maatwebsite for reasons of incompatibility with php >= 7.4 --- of Supercharged Excel exports in Laravel
8,301 3
Install
composer require convenia/excel
Latest Version:v2.5.0
PHP:>=5.5
License:MIT
Last Updated:May 8, 2025
Links: GitHub  ·  Packagist
Maintainer: vtrgomes

Laravel Excel v2.1.* for Laravel

This repository is a fork of Maatwebsite/Laravel-Excel to keep using v2 with php >=7.4


Excel::create('Laravel Excel', function($excel) {

    $excel->sheet('Excel sheet', function($sheet) {

        $sheet->setOrientation('landscape');

    });

})->export('xls');

Installation

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.

Documentation

The complete documentation can be found at: https://laravel-excel.maatwebsite.nl/docs

License

MIT

Related Packages

ferryvg/excel

An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the p...

10 0
comecc/excel

An eloquent way of importing and exporting Excel and CSV in lumen with the power...

522 0
maatwebsite/excel

Supercharged Excel exports and imports in Laravel

169,501,170 12,703
jeylabs/excel

An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the p...

433 1
alverated/excel

An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the p...

28 0