How to run the project
-
Install Composer Dependencies
runcomposer install
-
Install NPM Dependencies
runnpm install
-
Create copy of ur .env file
cp .env.example .env
-
Generate an app encryption key
php artisan key:generate
-
Create an empty database for our application
database namelaravel myapp
withutf8mb4 unicode ci
, open.env
environment file to modify the MYSQL database settings
DB_CONNECTION=mysql <br>
DB_HOST=127.0.0.1 <br>
DB_PORT=3306 <br>
DB_DATABASE=laravel_app <br>
DB_USERNAME=root <br>
DB_PASSWORD= <br>
-
Run proper data migration
php artisan migrate
-
Serve the program
php artisan serve
For further information about running the project , please look through https://devmarketer.io/learn/setup-laravel-project-cloned-github-com/