1 Answer
"
The .env file is not yet present because you will first need to create and configure it.
Do the following
#Navigate to the correct folder
$ cd /var/www/laravel
#Copy the example file to make a .env file
$ cp .env.example .env
#Set the parameters
$ vi .env
"
Your Answer