This txt will explain the process of creating the models and adding them into the modules

Note that all migrations have run, however we can make changes to the migrations as we are incrementally creating the models, factories and seeders

1. Find the table you want to make a model for inside the migrations
2. Verify that the migration is correct according to the DB diagram and to the requirements
3. Run the following command: `sail artisan code:models -t 'name of table'`
4. The model will be created inside the app/models dir, verify its location and the contents of the model 
4.1. Verify: Relationships, constancts, casts and fillables
5. Run the next command to beautify the model: `sail artisan model:beautify --path=app/Models/modelName.php` Note: Remember to add .php
6. Verify that the model has been beautified
6.1. Verify: Relationships, constants, fillable, also add key to relationships
7. Move the model into the correct module
8. Create a factory for the model
9. Create a seeder for the model.
10. Add the model seeder into the module seeder

- If you want to empty the tables, run `sail artisan empty:tables`
