Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronald-kimeli/laravel-csv-upload
Laravel implementation on large csv upload, it includes single csv file upload and multiple csv files upload
https://github.com/ronald-kimeli/laravel-csv-upload
csv-upload csv-upload-laravel file-upload laravel-csv-upload
Last synced: about 1 month ago
JSON representation
Laravel implementation on large csv upload, it includes single csv file upload and multiple csv files upload
- Host: GitHub
- URL: https://github.com/ronald-kimeli/laravel-csv-upload
- Owner: ronald-kimeli
- Created: 2023-07-03T08:02:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-03T15:34:19.000Z (over 1 year ago)
- Last Synced: 2023-08-07T10:57:44.156Z (over 1 year ago)
- Topics: csv-upload, csv-upload-laravel, file-upload, laravel-csv-upload
- Language: PHP
- Homepage:
- Size: 8.04 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel
## Installation
* Create .env file through copy
```bash
cp .env.example .env
```
* Install project dependencies```php
composer install
```* Generate laravel key for application to run
```php
php artisan key:generate
```* Install nodejs dependencies
```javascript
npm install
```* Provide database credentials below in .env file.
```php
DB_DATABASE=?
DB_USERNAME=?
DB_PASSWORD=?
```> Incase you want multidatabase connection then uncomment commented database and provide credentials
* To run the project
```php
php artisan key:generate
``````php
php artisan migrate --seed
```* Spin development servers
```javascript
npm run dev
``````php
php artisan serve
```* Then check localhost:8000 or click the link provided on npm run dev and check your browser
```php
localhost:8000
```