How to create an application in Laravel 8?
Sep 8, 2021
In this article, we are going to create an application in Laravel 8, so follow these steps:
Step 1: Install Laravel Application
There are lots of methods to create a fresh Laravel Project, but I going to create using composer.
$ composer create-project laravel/laravel econtact
$ cd econtact
$ php artisan serve
Step: 2 Database Configuration
Now we have to do some changes in .env like DatabaseName, Username, Password.
Read Full Article: https://www.engineerjagat.com/how-to-create-an-application-in-laravel-8/