diff --git a/README.md b/README.md index 1b4927d..44fb3a8 100644 --- a/README.md +++ b/README.md @@ -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.