/laravel-vue

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

laravel-vue

Vue + Laravel + Axios CRUD example app

Installation

  1. Clone repo

  2. Change to directory

cd laravel-vue
  1. Install dependencies
composer install
  1. Copy .env file
cp .env.example .env
  1. Modify DB_* value in .env with your database config.

  2. Generate application key:

php artisan key:generate
  1. Migrate
php artisan migrate
  1. Install Node modules
npm install
  1. Build
npm run prod