This was an university group project for the semester of Spring'20. I worked on both the front-end and back-end of the project. For the front-end of the I worked on developing various views like, homepages, product pages and other pages using HTML, SCSS and Bootstrap. And for the back-end of the website, I worked on designing the database, various controller functions, migrations and seeders.
status: Complete
After you have cloned the repo, run composer install and npm install to install the dependencies.
composer install
npm installCreate a copy of the .env file and generate a key
cp .env.example .env
php artisan key:generateThen update the database name from the .env file
and run php artisan migrate:refresh --seed to seed the database
php artisan migrate:refresh --seedFinally run php artisan serve to run the project
php artisan serve