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.
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,
];
}
}
We need tests! Can you help? Please consider contributing.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see LICENSE for more details.