Package Data | |
---|---|
Maintainer Username: | simonhamp |
Package Create Date: | 2019-04-22 |
Package Last Update: | 2025-09-30 |
Home Page: | https://novapackages.com/packages/simonhamp/laravel-nova-csv-import |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-10-04 15:16:15 |
Package Statistics | |
---|---|
Total Downloads: | 363,826 |
Monthly Downloads: | 5,396 |
Daily Downloads: | 115 |
Total Stars: | 167 |
Total Watchers: | 5 |
Total Forks: | 88 |
Total Open Issues: | 23 |
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.