Just started to learn Laravel...
I've created my first project following the instructions: "laravel new proj1".
Then now I want to create another project, do I need to do the whole "laravel new proj2" again?
According to the official documentation, "Once installed, the simple laravel new command will create a fresh Laravel installation in the directory you specify. "
But do I need "a fresh Laravel installation" every time I create a new Laravel project? thanks.
laravel new proj2. You do not need to require the laravel builder again with composer, you can uselaravel new ...over and over.