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

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

kayacekovic/nova-import
=======================

A Laravel Nova import tool.

0.0.8(5y ago)02.8kMITPHPPHP &gt;=7.1.0

Since Apr 28Pushed 5y agoCompare

[ Source](https://github.com/kayacekovic/nova-import)[ Packagist](https://packagist.org/packages/kayacekovic/nova-import)[ RSS](/packages/kayacekovic-nova-import/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (10)Used By (0)

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

[](#nova-import)

#### 💡 `Suggestion`: 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)

[](#-suggestion-nova-v3100-has-ability-to-create-standalone-actions-for-running-actions-without-selecting-resources-you-can-create-import-action-without-using-this-package-tutorial)

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 anaseqal/nova-import
```

Register the tool in your `app/Providers/NovaServiceProvider.php`:

```
use Anaseqal\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:

```
