-
run git CLI and execute
cd /c/xampp/htdocs -
then execute
git clone <repo_link> project -
then change directory to the repo
cd project -
execute
composer installorcomposer update -
execute
cp .env.example .env -
execute
php artisan key:generate -
configure the following fields in
.envfile:DB_DATABASE=database_nameDB_USERNAME=root //userDB_PASSWORD= //passAnd Other Required Field -
execute
php artisan migrate --seedto create and configure database and its schema. -
run project
php artisan serve -
consult the project in browser at http://127.0.0.1:8000
The Laravel framework is open-sourced software licensed under the MIT license.