Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coderflexx/laravel-csv-demo

Laravel CSV demo for `laravel-csv` package
https://github.com/coderflexx/laravel-csv-demo

csv csv-importer laravel

Last synced: 13 days ago
JSON representation

Laravel CSV demo for `laravel-csv` package

Awesome Lists containing this project

README

        

## Introduction
This project demo is to demonstrate on how [laravel-csv](https://github.com/coderflexx/laravel-csv) works

https://user-images.githubusercontent.com/21012933/190911273-8d2b4b9e-e848-44d5-8d0d-698178fe4986.mp4

# Installation

Clone the repo

```bash
git clone https://github.com/coderflexx/laravel-csv-demo
```

Install the dependecies
```bash
composer install
npm install
npm run dev
```

Copy the `.env` file
```
cp .env.example .env
```

Generate a new key
```bash
php artisan key:generate
```
Then

```bash
php artisan migrate --seed
```

Access the app
__Email__: [email protected]
__Password__: password

__NOTE__: This project is using `sqlite` by default, if you want to switch to `mysql` or any DB driver, you may change the driver from the `.env` file.

This project uses `redis` as a queue driver, if you want to change it, you may change your `.env` file configuration as well, or install redis in your local machine.