simonhamp / laravel-nova-csv-import by simonhamp

A fully-fledged CSV import tool for Laravel Nova.
252,923
160
6
Package Data
Maintainer Username: simonhamp
Package Create Date: 2019-04-22
Package Last Update: 2024-05-17
Home Page: https://novapackages.com/packages/simonhamp/laravel-nova-csv-import
Language: PHP
License: MIT
Last Refreshed: 2024-06-10 15:12:49
Package Statistics
Total Downloads: 252,923
Monthly Downloads: 6,642
Daily Downloads: 278
Total Stars: 160
Total Watchers: 6
Total Forks: 76
Total Open Issues: 21

Laravel Nova CSV Import

Latest Stable Version Total Downloads License

A fully-fledged CSV import tool for Laravel Nova. This package builds on top of the great work done by Sparclex with the nova-import-card package.

Laravel Nova CSV Import Screenshot

Installation

Install via Composer:

composer require simonhamp/laravel-nova-csv-import

Once installed, you must register the component in your app's NovaServiceProvider (app/Providers/NovaServiceProvider.php):

namespace App\Providers;

use SimonHamp\LaravelNovaCsvImport\LaravelNovaCsvImport;

class NovaServiceProvider extends NovaApplicationServiceProvider
{
    public function tools()
    {
        return [
            new LaravelNovaCsvImport,
        ];
    }
}

Testing

We need tests! Can you help? Please consider contributing.

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see LICENSE for more details.