Skip to content

tqt97/import-excel-to-db-in-laravel

Repository files navigation

Laravel Logo

Build Status Total Downloads Latest Stable Version License

Import - Export Excel & CSV File

Author Tuantq

Screenshot


How to clone project

  • Clone the repository: git clone https://github.com/tqt97/import-excel-to-db-in-laravel
  • Go to the folder application using cd command on your cmd or terminal cd import-excel-to-db-in-laravel
  • Run composer install on your cmd or terminal
  • Copy .env.example file to .env on the root folder. You can type copy .env.example .env if using command prompt Windows or cp .env.example .env if using terminal, Ubuntu
  • Open your .env file and change the database name (DB_DATABASE) to whatever you have, username (DB_USERNAME) and password (DB_PASSWORD) field correspond to your configuration.
  • Run php artisan key:generate
  • Run php artisan migrate:fresh --seed
  • Run npm run dev
  • Run php artisan serve
  • Go to http:https://127.0.0.1:8000
  • You can see the application running.

Aliases in cmd/command

alias pa='php artisan $1'
alias pas='php artisan serve'
alias pam='php artisan make:model $1'
alias pac='php artisan make:controller $1'
alias pamm='php artisan make:migration $1'
alias pamg='php artisan migrate'
alias pamgfs='php artisan migrate:fresh --seed'
alias pao='php artisan optimize:clear'
alias pak='php artisan key:generate'
alias nrd='npm run dev'
alias nrb='npm run build'
alias ci='composer install'
alias c='composer $1'
alias envc='cp .env.example .env'
alias par='php artisan make:request $1'
alias pammdl='php artisan make:middleware $1'
alias cl='clear'
alias pamsrc='php artisan make:resource $1'

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.