Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ and will automatically register in the Laravel system.

There are 3 main folders, and 4 files, to make note of in this test.

## app/Frostbite/Test/Users
## app/Frostbite/Test/FrostUsers

This is where the test module lives and where all of your code for the module should reside.


### app/Frostbite/Test/Users/Data/_____FrostUsersDataCreator.php
### app/Frostbite/Test/FrostUsers/Data/_____FrostUsersDataCreator.php

This is where you would place any code that would create a table in the system

### app/Frostbite/Test/Users/Helpers/FrostUsers.php
### app/Frostbite/Test/FrostUsers/Helpers/FrostUsers.php

This is where you would place any code required for back-end functionality

### app/Frostbite/Test/Users/Helpers/FrostUsers.php
### app/Frostbite/Test/FrostUsers/Models/FrostUsers.php

If a model is decided to be needed it would be defined in this file.

### app/Frostbite/Test/Users/web.php
### app/Frostbite/Test/FrostUsers/web.php

Place all of your module routes here.

Expand Down