[Vuejs]-Laravel Vue scaffolding, Auth and Nova installation order?

0👍

I did several tests and found no difference in the results with different order of Laravel, Auth, Nova and Vue installation.
Looks like Nova doesn’t create additional Users table, and uses the one that comes with Laravel.

Logical installation order might be:

laravel new MyProjectName
php artisan ui vue --auth (use --auth flag if you need authentication)
php artisan nova:install (make sure you have copied Nova files first)

Leave a comment