composer install
npm install
cp .env.example .env
php artisan key:generate
In the .env file, add database information to allow Laravel to connect to the database In the .env file fill in the DB_HOST, DB_PORT, DB_DATABASE, DB_USERNAME, and DB_PASSWORD options to match the credentials of the database you just created.
php artisan migrate
php artisan db:seed
The Laravel framework is open-sourced software licensed under the MIT license.