Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/coderflexx/laravel-csv-demo
- Owner: coderflexx
- Created: 2022-09-18T12:42:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-18T14:11:15.000Z (over 2 years ago)
- Last Synced: 2024-11-15T07:29:45.163Z (2 months ago)
- Topics: csv, csv-importer, laravel
- Language: PHP
- Homepage: https://coderflex.com/open-source/docs/laravel-csv/introduction
- Size: 382 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction
This project demo is to demonstrate on how [laravel-csv](https://github.com/coderflexx/laravel-csv) workshttps://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.