Package Data | |
---|---|
Maintainer Username: | simonhamp |
Package Create Date: | 2019-04-22 |
Package Last Update: | 2024-09-09 |
Home Page: | https://novapackages.com/packages/simonhamp/laravel-nova-csv-import |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:20:40 |
Package Statistics | |
---|---|
Total Downloads: | 284,409 |
Monthly Downloads: | 8,174 |
Daily Downloads: | 375 |
Total Stars: | 168 |
Total Watchers: | 6 |
Total Forks: | 76 |
Total Open Issues: | 21 |
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.