Create CRUD using Laravel Mix Vuejs.
- PHP
- Laarvel Framework 5.8
- Install composer: https://getcomposer.org/
$ git clone https://github.com/TanHongIT/crud-lara-vuejs-basic $ cd crud-lara-vuejs-basic
Run:
$ npm install $ composer install
Run:
$ php artisan key:generate
Create a new database in your server and edit the information in the .env file
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=root DB_PASSWORD=
Run:
$ php artisan migrate
$ php artisan db:seed --class=DatabaseSeeder
Now, Launch your system...
Run the npm:
$ npm run watch
Run the laravel project on port: http://localhost:8000
$ php artisan serve