PHPackages                             gevorgmelkumyan/nova-csv-export - 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. gevorgmelkumyan/nova-csv-export

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

gevorgmelkumyan/nova-csv-export
===============================

0197PHP

Since Nov 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/gevorgmelkumyan/nova-csv-export)[ Packagist](https://packagist.org/packages/gevorgmelkumyan/nova-csv-export)[ RSS](/packages/gevorgmelkumyan-nova-csv-export/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Nova CSV Export
===============

[](#nova-csv-export)

This package allows you to export resources as a csv file.

Prerequisites
-------------

[](#prerequisites)

- php &gt;= 7.3
- Laravel &gt;= 6.0
- Laravel Nova ~3.0

Installation
------------

[](#installation)

```
composer require gevorgmelkumyan/nova-csv-export
```

Usage
-----

[](#usage)

- Make the model of the resource you desire to export to use `Exportable` trait:

```
namespace App\Models;
use GevorgMelkumyan\Models\Exportable;

class User extends Authenticable {
    use Exportable;
}
```

- Inside the model override `mapping` array fetched from `Exportable` by specifying model's attributes as keys and their labels as the values:

```
...
protected $mapping = [
    'id' => 'ID',
    'first_name' => 'First Name',
    'dob' => 'Date Of Birth',
];
...
```

- Inside the resource related to the model add `ExportCsv` to `Actions` specifying the directory where the csv files will be stored:

```
use GevorgMelkumyan\Actions\ExportCsv;
...
public function actions() {
    return [
        new ExportCsv('csv'),
    ];
}
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity27

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c96e5af8dd19276063069a415c9e063abba0e20459962afe9d5207b37228e605?d=identicon)[gevorg.melkumyan](/maintainers/gevorg.melkumyan)

---

Top Contributors

[![gevorgmelkumyan](https://avatars.githubusercontent.com/u/35730573?v=4)](https://github.com/gevorgmelkumyan "gevorgmelkumyan (3 commits)")

### Embed Badge

![Health badge](/badges/gevorgmelkumyan-nova-csv-export/health.svg)

```
[![Health](https://phpackages.com/badges/gevorgmelkumyan-nova-csv-export/health.svg)](https://phpackages.com/packages/gevorgmelkumyan-nova-csv-export)
```

###  Alternatives

[cybercog/laravel-paket

Composer personal web interface. Manage Laravel dependencies without switching to command line!

1753.3k](/packages/cybercog-laravel-paket)[laravel-frontend-presets/inertiajs

A Laravel frontend preset to get you up and running with Inertia.js

1464.5k](/packages/laravel-frontend-presets-inertiajs)[dominicwatts/faker

Console based fake data generator - just generate what you need

413.5k](/packages/dominicwatts-faker)[markwalet/laravel-packagist

A Laravel wrapper for the `spatie/packagist-api` package.

132.1k](/packages/markwalet-laravel-packagist)

PHPackages © 2026

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