PHPackages                             smart145/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. smart145/fast-excel

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

smart145/fast-excel
===================

Fast Excel import/export for Laravel

v3.1.4(2y ago)1133.8k↑13.1%MITPHPPHP ^8.0

Since Apr 5Pushed 2y ago1 watchersCompare

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

READMEChangelog (10)Dependencies (5)Versions (54)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/22c37bc46803a46516fb5421bb238b3490de50c84f9bd6d32401f48f7cbcdb08/68747470733a2f2f706f7365722e707567782e6f72672f736d6172743134352f666173742d657863656c2f76657273696f6e3f666f726d61743d666c6174)](https://packagist.org/packages/smart145/fast-excel)[![License](https://camo.githubusercontent.com/f1c060661dbf9465f66a7944a5291bc02f80d44823021a4797c5b6c02cfe4927/68747470733a2f2f706f7365722e707567782e6f72672f736d6172743134352f666173742d657863656c2f6c6963656e73653f666f726d61743d666c6174)](https://packagist.org/packages/smart145/fast-excel)[![StyleCI](https://camo.githubusercontent.com/2dcc8622d867639965043425700c8df00523fcc114251721884f3a93d42b5f84/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3132383137343830392f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/128174809?branch=master)[![Tests](https://github.com/smart145/fast-excel/actions/workflows/tests.yml/badge.svg)](https://github.com/smart145/fast-excel/actions/workflows/tests.yml)[![Total Downloads](https://camo.githubusercontent.com/70c255355ae30b7d722be5a46f2dfd3bd03b78ba0a289c9253a3caf5fab0507d/68747470733a2f2f706f7365722e707567782e6f72672f736d6172743134352f666173742d657863656c2f646f776e6c6f616473)](https://packagist.org/packages/smart145/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 smart145/fast-excel

```

Export a Model to `.xlsx` file:

```
use Smart145\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' => Smart145\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

43

—

FairBetter than 91% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity82

Battle-tested with a long release history

 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 ~45 days

Recently: every ~22 days

Total

46

Last Release

938d ago

Major Versions

v0.12.0 → v1.0.02019-01-02

v1.2.10 → v2.0.02022-11-16

v2.0.0 → v3.0.02023-07-26

PHP version history (4 changes)v0.10.0PHP ^7.0

v1.2.5PHP 7.\*

v2.0.0PHP 8.\*

v3.0.0PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/bbbc49241b2231fd86bed0a5a8d8e5dd8b3209b542fc8b0ca965b58b8034d554?d=identicon)[eliurkis](/maintainers/eliurkis)

---

Top Contributors

[![rap2hpoutre](https://avatars.githubusercontent.com/u/1575946?v=4)](https://github.com/rap2hpoutre "rap2hpoutre (140 commits)")[![johanrosenson](https://avatars.githubusercontent.com/u/10432296?v=4)](https://github.com/johanrosenson "johanrosenson (5 commits)")[![jnunez95](https://avatars.githubusercontent.com/u/129712493?v=4)](https://github.com/jnunez95 "jnunez95 (3 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (2 commits)")[![Pochwar](https://avatars.githubusercontent.com/u/9018038?v=4)](https://github.com/Pochwar "Pochwar (2 commits)")[![markdieselcore](https://avatars.githubusercontent.com/u/16547382?v=4)](https://github.com/markdieselcore "markdieselcore (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)")[![humbertleonardo](https://avatars.githubusercontent.com/u/57204453?v=4)](https://github.com/humbertleonardo "humbertleonardo (1 commits)")[![IvAndrew](https://avatars.githubusercontent.com/u/15038813?v=4)](https://github.com/IvAndrew "IvAndrew (1 commits)")[![jpmurray](https://avatars.githubusercontent.com/u/1550428?v=4)](https://github.com/jpmurray "jpmurray (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)")[![tumichnix](https://avatars.githubusercontent.com/u/1856432?v=4)](https://github.com/tumichnix "tumichnix (1 commits)")

---

Tags

laravelexcelxlsxlsxcsv

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/smart145-fast-excel/health.svg)](https://phpackages.com/packages/smart145-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.3M712](/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)
