Environment variables
A Laravel project requires certain environment variables to be set in a .env
 file. Create one now by copying the environment file sample:
$ cp .env.example .env
Generate an app key by running this command:
$ php artisan key:generate
I've preset most other relevant environment variables so you shouldn't have to change anything unless you've configured Homestead differently to me.