Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.21 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.21 KB

Information

  • MySQL
  • Laravel
  • Vue 3
  • Bootstrap 5
  • Category DB schema, Model and seeder data is already provided for you.

Install

You can follow the Laravel installation instructions here https://laravel.com/docs/8.x/installation for how to get it installed on your system, using your preferred method.

Once done, you can run the following commands to:

Compile JS/CSS assets

npm install
npm run dev

Install PHP packages (may already be done depending on your installation method)

composer install

Migrate the database and seed the Categories

php artisan migrate
php artisan db:seed

Goal of the exercise

Create a vue component to see the list of categories on 3 levels. Selecting a parent item will create a second list with only the children of the selected item, and the same again for the children of the children.

lvl1 lvl2 lvl3