PHPackages                             marshmallow/nova-tool-data-importer - 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. marshmallow/nova-tool-data-importer

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

marshmallow/nova-tool-data-importer
===================================

A fully-fledged Excel &amp; CSV import tool for Laravel Nova. The importer will use your own validation rules on every row. It can run in browser and in queued jobs. When running as a job, events will fire to let you know what is happening.

v1.0.1(5y ago)5971[1 issues](https://github.com/marshmallow-packages/nova-tool-data-importer/issues)[3 PRs](https://github.com/marshmallow-packages/nova-tool-data-importer/pulls)MITPHPPHP ^7.1|^8.0

Since Apr 3Pushed 3y ago1 watchersCompare

[ Source](https://github.com/marshmallow-packages/nova-tool-data-importer)[ Packagist](https://packagist.org/packages/marshmallow/nova-tool-data-importer)[ Docs](https://github.com/Marshmallow-Development/)[ RSS](/packages/marshmallow-nova-tool-data-importer/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (2)Versions (7)Used By (0)

[![alt text](https://camo.githubusercontent.com/f5450f299f5713ce2f04dd5a1ba7ce9960ed4568b3574e4c4ee3cddc75477253/68747470733a2f2f6d617273686d616c6c6f772e6465762f63646e2f6d656469612f6c6f676f2d7265642d3233377834362e706e67 "marshmallow.")](https://camo.githubusercontent.com/f5450f299f5713ce2f04dd5a1ba7ce9960ed4568b3574e4c4ee3cddc75477253/68747470733a2f2f6d617273686d616c6c6f772e6465762f63646e2f6d656469612f6c6f676f2d7265642d3233377834362e706e67)

Marshmallow Laravel Nova Importer
=================================

[](#marshmallow-laravel-nova-importer)

[![Version](https://camo.githubusercontent.com/cc68efcf3e35395eac2709f66529329de5bab1603d0fd72f0a638a7e501f6227/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d617273686d616c6c6f772f6d722d6d616c6c6f77)](https://github.com/marshmallow-packages/mr-mallow)[![Issues](https://camo.githubusercontent.com/2801e49dbd813ac10024d1af5c298666a4b426ad4e9b9d06c6d77b4454334008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d617273686d616c6c6f772d7061636b616765732f6d722d6d616c6c6f77)](https://github.com/marshmallow-packages/mr-mallow)[![Licence](https://camo.githubusercontent.com/3bd158e9bca9aa232a8f5f15c4220e0cf2f2c8cd176659920dd86bd375a9c08e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d617273686d616c6c6f772d7061636b616765732f6d722d6d616c6c6f77)](https://github.com/marshmallow-packages/mr-mallow)[![PHP Syntax Checker](https://github.com/marshmallow-packages/mr-mallow/workflows/PHP%20Syntax%20Checker/badge.svg)](https://github.com/marshmallow-packages/mr-mallow/workflows/PHP%20Syntax%20Checker/badge.svg)

Import data to your Laravel Nova models. You can use jobs if you're expecting large files.

[ See it in action in a GIF ](https://marshmallow.dev/cdn/readme/package-nova-data-importer/marshmallow-small.gif)Installation
------------

[](#installation)

You can install the package via composer:

```
composer require marshmallow/nova-data-importer
```

The importer needs to have a table to store some data so please run a migration.

```
php artisan migrate
```

Usage
-----

[](#usage)

In `app/Providers/NovaServiceProvider.php` you need to add the Import tool.

```
public function tools()
{
    return [
        ...
        new \Marshmallow\NovaDataImporter\NovaDataImporter,
    ];
}

```

Set up queues (optional)
------------------------

[](#set-up-queues-optional)

First, we need to make sure you are able to run queues. If you are already running queues you don't have to change your current behaviour.

Prepare your application to handle queues from the database. Skip this if you already have queues set up.

```
php artisan queue:table
php artisan migrate
```

Update your `.env` file first:

```
QUEUE_CONNECTION=database

BROADCAST_DRIVER=pusher

PUSHER_APP_ID=XXX
PUSHER_APP_KEY=XXX
PUSHER_APP_SECRET=XXX
PUSHER_APP_CLUSTER=eu
```

Last; Inside your `config/app.php` uncomment the line below if it is still commented.

```
[
   'providers' => [

        /*
         * Laravel Framework Service Providers...
         */
        Illuminate\Broadcasting\BroadcastServiceProvider::class,
    ],
]
```

Start your worker and you're good to go!

```
php artisan queue:work --queue=default
```

Options
-------

[](#options)

If you want to override some of the default options, you need to publish the config file with `php artisan vendor:publish`.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [All Contributors](../../contributors)
- Package is based on [laravel-nova-csv-import by simonhamp](https://github.com/simonhamp/laravel-nova-csv-import)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 81.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 ~368 days

Total

2

Last Release

1861d ago

PHP version history (2 changes)v1.0.0PHP &gt;=7.1.0

v1.0.1PHP ^7.1|^8.0

### Community

Maintainers

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

---

Top Contributors

[![stefvanesch](https://avatars.githubusercontent.com/u/46725619?v=4)](https://github.com/stefvanesch "stefvanesch (18 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")

---

Tags

laravelnovamarshmallowexcel-importlaravel nova importer

### Embed Badge

![Health badge](/badges/marshmallow-nova-tool-data-importer/health.svg)

```
[![Health](https://phpackages.com/badges/marshmallow-nova-tool-data-importer/health.svg)](https://phpackages.com/packages/marshmallow-nova-tool-data-importer)
```

###  Alternatives

[simonhamp/laravel-nova-csv-import

A fully-fledged CSV import tool for Laravel Nova.

167433.3k](/packages/simonhamp-laravel-nova-csv-import)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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