PHPackages                             cyber-duck/nova-import - 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. cyber-duck/nova-import

Abandoned → [cyber-duck/nova-import](/?search=cyber-duck%2Fnova-import)Library[Utility &amp; Helpers](/categories/utility)

cyber-duck/nova-import
======================

Laravel Nova Excel Import button.

0.0.2(6y ago)1928MITPHPPHP &gt;=7.1.0

Since Apr 28Pushed 4y agoCompare

[ Source](https://github.com/Cyber-Duck/nova-import)[ Packagist](https://packagist.org/packages/cyber-duck/nova-import)[ RSS](/packages/cyber-duck-nova-import/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (1)Versions (3)Used By (0)

🚨 Discontinued 🚨
================

[](#-discontinued-)

Nova v3.10.0+ has ability to create "standalone" actions for running actions without selecting resources. you can create import action without using this package. [Tutorial](https://github.com/anaseqal/nova-import/issues/26)

Nova Import
===========

[](#nova-import)

Import data to resources.

[![screenshot](https://camo.githubusercontent.com/249a81e568c2ac3750d01731646ae7dc991b2c9d092c9b828f638b576944b580/68747470733a2f2f692e696d6775722e636f6d2f737a4b6d4c47662e676966)](https://camo.githubusercontent.com/249a81e568c2ac3750d01731646ae7dc991b2c9d092c9b828f638b576944b580/68747470733a2f2f692e696d6775722e636f6d2f737a4b6d4c47662e676966)

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

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require cyber-duck/nova-import
```

Register the tool in `NovaServiceProvider`:

```
use Cyberduck\NovaImport\NovaImport;
...

public function tools()
    {
        return [
            new NovaImport,
            ...
        ];
    }
```

Usage
-----

[](#usage)

To use this tool, you need to create two things:

1. Create an import class for your resource using [Laravel Excel](https://docs.laravel-excel.com/3.1/imports/).
2. Create a custom Nova Action file:

```
