Skip to content

Commit 81f511c

Browse files
committed
More readme tweaks
1 parent 5a14165 commit 81f511c

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
# Laravel Nova CSV Import
22

3-
[![Latest Stable Version](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/v/stable)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
4-
[![Total Downloads](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/downloads)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
5-
[![License](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/license)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
3+
[![Latest Stable Version](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/v/stable?style=for-the-badge)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
4+
[![Total Downloads](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/downloads?style=for-the-badge)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
5+
[![License](https://poser.pugx.org/simonhamp/laravel-nova-csv-import/license?style=for-the-badge)](https://packagist.org/packages/simonhamp/laravel-nova-csv-import)
66

7-
A simple CSV import tool for Laravel Nova. This package builds on top of the great work done by Sparclex with the [nova-import-card](https://github.com/Sparclex/nova-import-card) package.
7+
A simple CSV import tool for Laravel Nova that allows you to upload a CSV file via Nova and choose which Nova resource
8+
to import it to.
9+
10+
The import process lets you choose how to map the relevant columns from your uploaded file to the attributes on your
11+
models, with a nice summary at the end of what worked and what didn't
12+
13+
> This package builds on top of the great work done by Sparclex with the [nova-import-card](https://github.com/Sparclex/nova-import-card) package.
814
915
![Laravel Nova CSV Import Screenshot](https://raw.githubusercontent.com/simonhamp/laravel-nova-csv-import/master/screenshots/readme.png)
1016

17+
## Sponsorship
18+
CSV Import is completely free to use. I've built it in my own time to fill my own needs and I also support it in my own
19+
time. If you'd like to show your appreciation for that, I do accept [donations via GitHub](https://github.com/sponsors/simonhamp).
20+
21+
Thank you 🙏
22+
1123
## Installation
1224

1325
Install via Composer:
@@ -17,7 +29,7 @@ composer require simonhamp/laravel-nova-csv-import --with-all-dependencies
1729
```
1830

1931
Once installed, you must register the component in your app's `NovaServiceProvider`
20-
(`app/Providers/NovaServiceProvider.php`):
32+
(usually in `app/Providers/NovaServiceProvider.php`):
2133

2234
```php
2335
namespace App\Providers;
@@ -36,7 +48,7 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
3648
```
3749

3850
## Options
39-
By default, all of your Nova Resources will be available for import. However, there are a number of ways that you can
51+
By default, _all_ of your Nova Resources will be available for import. However, there are a number of ways that you can
4052
explicitly limit what's available for importing.
4153

4254
`public static $canImportResource = false;`

0 commit comments

Comments
 (0)