| 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-11-03 15:18:08 |
| Package Statistics | |
|---|---|
| Total Downloads: | 369,145 |
| Monthly Downloads: | 5,311 |
| Daily Downloads: | 49 |
| Total Stars: | 166 |
| 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.