simonhamp / laravel-nova-csv-import by simonhamp

A fully-fledged CSV import tool for Laravel Nova.
244,754
157
6
Package Data
Maintainer Username: simonhamp
Package Create Date: 2019-04-22
Package Last Update: 2024-03-28
Home Page: https://novapackages.com/packages/simonhamp/laravel-nova-csv-import
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:23:31
Package Statistics
Total Downloads: 244,754
Monthly Downloads: 5,242
Daily Downloads: 231
Total Stars: 157
Total Watchers: 6
Total Forks: 72
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.