| Package Data | |
|---|---|
| Maintainer Username: | simonhamp |
| Package Create Date: | 2019-04-22 |
| Package Last Update: | 2025-12-16 |
| Home Page: | https://novapackages.com/packages/simonhamp/laravel-nova-csv-import |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-26 03:16:41 |
| Package Statistics | |
|---|---|
| Total Downloads: | 388,028 |
| Monthly Downloads: | 12,499 |
| Daily Downloads: | 72 |
| Total Stars: | 166 |
| Total Watchers: | 5 |
| Total Forks: | 89 |
| Total Open Issues: | 22 |
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.