PHPackages                             felo-z/fast-excel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [PDF &amp; Document Generation](/categories/documents)
4. /
5. felo-z/fast-excel

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

felo-z/fast-excel
=================

Fast Excel import/export for Laravel

v1.0.1(1mo ago)01↑2900%MITPHPPHP ^8.0

Since Mar 24Pushed 1mo agoCompare

[ Source](https://github.com/Felo-Z/fast-excel)[ Packagist](https://packagist.org/packages/felo-z/fast-excel)[ GitHub Sponsors](https://github.com/rap2hpoutre)[ RSS](/packages/felo-z-fast-excel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

[![](https://user-images.githubusercontent.com/36028424/40173202-9a03d68a-5a03-11e8-9968-6b7e3b4f8a1b.png)](https://user-images.githubusercontent.com/36028424/40173202-9a03d68a-5a03-11e8-9968-6b7e3b4f8a1b.png)

[![Version](https://camo.githubusercontent.com/88690c0753c669bde9c175a8366e801c198e77cb860649f76a50fb1eed6dd515/68747470733a2f2f706f7365722e707567782e6f72672f7261703268706f757472652f666173742d657863656c2f76657273696f6e3f666f726d61743d666c6174)](https://packagist.org/packages/rap2hpoutre/fast-excel)[![License](https://camo.githubusercontent.com/b51908ff8146800b12ffa3c89bf64d99a69d9061e0859ba35f2e9d3bc329cf46/68747470733a2f2f706f7365722e707567782e6f72672f7261703268706f757472652f666173742d657863656c2f6c6963656e73653f666f726d61743d666c6174)](https://packagist.org/packages/rap2hpoutre/fast-excel)[![StyleCI](https://camo.githubusercontent.com/2dcc8622d867639965043425700c8df00523fcc114251721884f3a93d42b5f84/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3132383137343830392f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/128174809?branch=master)[![Tests](https://github.com/rap2hpoutre/fast-excel/actions/workflows/tests.yml/badge.svg)](https://github.com/rap2hpoutre/fast-excel/actions/workflows/tests.yml)[![Total Downloads](https://camo.githubusercontent.com/6f2e8f59fde016298c7d6bcc8c7a0c6b028b34301b2700980ae6c278e05b3988/68747470733a2f2f706f7365722e707567782e6f72672f7261703268706f757472652f666173742d657863656c2f646f776e6c6f616473)](https://packagist.org/packages/rap2hpoutre/fast-excel)

Fast Excel import/export for Laravel, thanks to [Spout](https://github.com/box/spout). See [benchmarks](#benchmarks) below.

Quick start
-----------

[](#quick-start)

Install via composer:

```
composer require rap2hpoutre/fast-excel

```

Export a Model to `.xlsx` file:

```
use Rap2hpoutre\FastExcel\FastExcel;
use App\User;

// Load users
$users = User::all();

// Export all users
(new FastExcel($users))->export('file.xlsx');
```

Export
------

[](#export)

Export a Model or a **Collection**:

```
$list = collect([
    [ 'id' => 1, 'name' => 'Jane' ],
    [ 'id' => 2, 'name' => 'John' ],
]);

(new FastExcel($list))->export('file.xlsx');
```

Export `xlsx`, `ods` and `csv`:

```
$invoices = App\Invoice::orderBy('created_at', 'DESC')->get();
(new FastExcel($invoices))->export('invoices.csv');
```

Export only some attributes specifying columns names:

```
(new FastExcel(User::all()))->export('users.csv', function ($user) {
    return [
        'Email' => $user->email,
        'First Name' => $user->firstname,
        'Last Name' => strtoupper($user->lastname),
    ];
});
```

Download (from a controller method):

```
return (new FastExcel(User::all()))->download('file.xlsx');
```

Import
------

[](#import)

`import` returns a Collection:

```
$collection = (new FastExcel)->import('file.xlsx');
```

Import a `csv` with specific delimiter, enclosure characters and "gbk" encoding:

```
$collection = (new FastExcel)->configureCsv(';', '#', 'gbk')->import('file.csv');
```

Import and insert to database:

```
$users = (new FastExcel)->import('file.xlsx', function ($line) {
    return User::create([
        'name' => $line['Name'],
        'email' => $line['Email']
    ]);
});
```

Facades
-------

[](#facades)

You may use FastExcel with the optional Facade. Add the following line to `config/app.php` under the `aliases` key.

```
'FastExcel' => Rap2hpoutre\FastExcel\Facades\FastExcel::class,
```

Using the Facade, you will not have access to the constructor. You may set your export data using the `data` method.

```
$list = collect([
    [ 'id' => 1, 'name' => 'Jane' ],
    [ 'id' => 2, 'name' => 'John' ],
]);

FastExcel::data($list)->export('file.xlsx');
```

Global helper
-------------

[](#global-helper)

FastExcel provides a convenient global helper to quickly instantiate the FastExcel class anywhere in a Laravel application.

```
$collection = fastexcel()->import('file.xlsx');
fastexcel($collection)->export('file.xlsx');
```

Advanced usage
--------------

[](#advanced-usage)

### Export multiple sheets

[](#export-multiple-sheets)

Export multiple sheets by creating a `SheetCollection`:

```
$sheets = new SheetCollection([
    User::all(),
    Project::all()
]);
(new FastExcel($sheets))->export('file.xlsx');
```

Use index to specify sheet name:

```
$sheets = new SheetCollection([
    'Users' => User::all(),
    'Second sheet' => Project::all()
]);
```

### Import multiple sheets

[](#import-multiple-sheets)

Import multiple sheets by using `importSheets`:

```
$sheets = (new FastExcel)->importSheets('file.xlsx');
```

You can also import a specific sheet by its number:

```
$users = (new FastExcel)->sheet(3)->import('file.xlsx');
```

Import multiple sheets with sheets names:

```
$sheets = (new FastExcel)->withSheetsNames()->importSheets('file.xlsx');
```

### Export large collections with chunk

[](#export-large-collections-with-chunk)

Export rows one by one to avoid `memory_limit` issues [using `yield`](https://www.php.net/manual/en/language.generators.syntax.php):

```
function usersGenerator() {
    foreach (User::cursor() as $user) {
        yield $user;
    }
}

// Export consumes only a few MB, even with 10M+ rows.
(new FastExcel(usersGenerator()))->export('test.xlsx');
```

### Add header and rows style

[](#add-header-and-rows-style)

Add header and rows style with `headerStyle` and `rowsStyle` methods.

```
use OpenSpout\Common\Entity\Style\Style;

$header_style = (new Style())->setFontBold();

$rows_style = (new Style())
    ->setFontSize(15)
    ->setShouldWrapText()
    ->setBackgroundColor("EDEDED");

return (new FastExcel($list))
    ->headerStyle($header_style)
    ->rowsStyle($rows_style)
    ->download('file.xlsx');
```

Why?
----

[](#why)

FastExcel is intended at being Laravel-flavoured [Spout](https://github.com/box/spout): a simple, but elegant wrapper around [Spout](https://github.com/box/spout) with the goal of simplifying **imports and exports**. It could be considered as a faster (and memory friendly) alternative to [Laravel Excel](https://laravel-excel.com/), with less features. Use it only for simple tasks.

Benchmarks
----------

[](#benchmarks)

> Tested on a MacBook Pro 2015 2,7 GHz Intel Core i5 16 Go 1867 MHz DDR3. Testing a XLSX export for 10000 lines, 20 columns with random data, 10 iterations, 2018-04-05. **Don't trust benchmarks.**

Average memory peak usageExecution timeLaravel Excel123.56 M11.56 sFastExcel2.09 M2.76 sStill, remember that [Laravel Excel](https://laravel-excel.com/) **has many more features.**

###  Health Score

40

—

FairBetter than 87% of packages

Maintenance98

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 77.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

46d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a8df410a9fd3a23313e76c190cc6bcfffd359f9a78534e415158bbc08a826c2e?d=identicon)[Felo-Z](/maintainers/Felo-Z)

---

Top Contributors

[![rap2hpoutre](https://avatars.githubusercontent.com/u/1575946?v=4)](https://github.com/rap2hpoutre "rap2hpoutre (144 commits)")[![johanrosenson](https://avatars.githubusercontent.com/u/10432296?v=4)](https://github.com/johanrosenson "johanrosenson (5 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (3 commits)")[![crynobone](https://avatars.githubusercontent.com/u/172966?v=4)](https://github.com/crynobone "crynobone (3 commits)")[![Pochwar](https://avatars.githubusercontent.com/u/9018038?v=4)](https://github.com/Pochwar "Pochwar (2 commits)")[![henryavila](https://avatars.githubusercontent.com/u/8429941?v=4)](https://github.com/henryavila "henryavila (2 commits)")[![svenluijten](https://avatars.githubusercontent.com/u/11269635?v=4)](https://github.com/svenluijten "svenluijten (2 commits)")[![markdieselcore](https://avatars.githubusercontent.com/u/16547382?v=4)](https://github.com/markdieselcore "markdieselcore (2 commits)")[![jpmurray](https://avatars.githubusercontent.com/u/1550428?v=4)](https://github.com/jpmurray "jpmurray (1 commits)")[![jschram](https://avatars.githubusercontent.com/u/10851379?v=4)](https://github.com/jschram "jschram (1 commits)")[![krenor](https://avatars.githubusercontent.com/u/13726968?v=4)](https://github.com/krenor "krenor (1 commits)")[![maherelgamil](https://avatars.githubusercontent.com/u/6294478?v=4)](https://github.com/maherelgamil "maherelgamil (1 commits)")[![mashkovtsevlx](https://avatars.githubusercontent.com/u/9170009?v=4)](https://github.com/mashkovtsevlx "mashkovtsevlx (1 commits)")[![matejjurancic](https://avatars.githubusercontent.com/u/4748399?v=4)](https://github.com/matejjurancic "matejjurancic (1 commits)")[![micalm](https://avatars.githubusercontent.com/u/9348336?v=4)](https://github.com/micalm "micalm (1 commits)")[![mokhosh](https://avatars.githubusercontent.com/u/6499685?v=4)](https://github.com/mokhosh "mokhosh (1 commits)")[![pushchris](https://avatars.githubusercontent.com/u/679974?v=4)](https://github.com/pushchris "pushchris (1 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")[![shoutoutloud](https://avatars.githubusercontent.com/u/21352046?v=4)](https://github.com/shoutoutloud "shoutoutloud (1 commits)")[![squatto](https://avatars.githubusercontent.com/u/748444?v=4)](https://github.com/squatto "squatto (1 commits)")

---

Tags

laravelexcelxlsxlsxcsv

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/felo-z-fast-excel/health.svg)

```
[![Health](https://phpackages.com/badges/felo-z-fast-excel/health.svg)](https://phpackages.com/packages/felo-z-fast-excel)
```

###  Alternatives

[rap2hpoutre/fast-excel

Fast Excel import/export for Laravel

2.3k24.9M47](/packages/rap2hpoutre-fast-excel)[maatwebsite/excel

Supercharged Excel exports and imports in Laravel

12.7k144.3M709](/packages/maatwebsite-excel)[emiliogrv/nova-batch-load

A Laravel Nova XLS &amp; CSV importer

1641.8k](/packages/emiliogrv-nova-batch-load)[seine/seine

Seine - Write spreadsheets of various formats to a stream

1270.3k](/packages/seine-seine)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
