- MySQL
- Laravel
- Vue 3
- Bootstrap 5
- Category DB schema, Model and seeder data is already provided for you.
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
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.