How to Install Laravel and Create first View Page in Laravel ?
In this tutorial im going to describe how to install laravel project and create first view pages, so follow some easy steps define below. First letโs go to install laravel project composer create-project laravel/laravel learning-project “5.8.*” lets go to .env folder and put database name and connect to database. DB_CONNECTION=mysqlDB_HOST=127.0.0.1DB_PORT=3306DB_DATABASE=learning-projectDB_USERNAME=rootDB_PASSWORD= Now migrate the table php artisan migrate … Read more