PHPackages                             nethercore/csv-exporter - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. nethercore/csv-exporter

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

nethercore/csv-exporter
=======================

CSV Exporter for laravel

1.0.1(1y ago)14MITPHPPHP ^8.1

Since Sep 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Netherspike/Nethercore)[ Packagist](https://packagist.org/packages/nethercore/csv-exporter)[ RSS](/packages/nethercore-csv-exporter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Nethercore - Laravel CSV Data Export &amp; Creator
==================================================

[](#nethercore---laravel-csv-data-export--creator)

Installation via composer:

`composer require nethercore/csv-exporter`

---

Usage:

Generated files will appear in App/Exports/{name}Export.php

Use double backslashes for nested name or model files.

`php artisan make:export {name} {model}`

e.g `php artisan make:export Wharehouse\\Product Stock\\Item` will create `app/Exports/Wharehouse/ProductExport.php` using `Models/Stock/Item.php` inside the export file.

Example Code:

```
namespace App\Exports;

use App\Models\Product;
use Nethercore\CsvExporter\Interfaces\BaseExporterInterface;
use Nethercore\CsvExporter\Traits\StreamResponseTrait;
use Symfony\Component\HttpFoundation\StreamedResponse;

final class ProductExport implements BaseExporterInterface
{
    use StreamResponseTrait;
    ...
}

```

```
use App\Exports\ProductExport;

class ProductController extends Controller
{
    public function export()
    {
        return (new ProductExport('some product title'))->export());
    }
}

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance35

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

616d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1c17d949fea5e649849464adcb4faced0a0f124af258bc6f381f9feda628a0a5?d=identicon)[Netherspike](/maintainers/Netherspike)

---

Top Contributors

[![Netherspike](https://avatars.githubusercontent.com/u/22919461?v=4)](https://github.com/Netherspike "Netherspike (10 commits)")

### Embed Badge

![Health badge](/badges/nethercore-csv-exporter/health.svg)

```
[![Health](https://phpackages.com/badges/nethercore-csv-exporter/health.svg)](https://phpackages.com/packages/nethercore-csv-exporter)
```

###  Alternatives

[mokhosh/filament-kanban

Add kanban boards to your Filament pages

453180.4k1](/packages/mokhosh-filament-kanban)[meetanshi/magento-2-defer-parsing-javascript

Magento 2 DeferJS

114.0k](/packages/meetanshi-magento-2-defer-parsing-javascript)

PHPackages © 2026

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