From 3f3d8b907f0970e323b6255bdefe8996bfcec8b1 Mon Sep 17 00:00:00 2001 From: Hemerson Varela Date: Thu, 26 Mar 2020 14:04:15 -0400 Subject: [PATCH 1/2] Update README File Update path to avoid confusion. The path `app/Frostbite/Test/Users` specified in the README file doesn't exist. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1b4927d..57aaee7 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/Helpers/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. From d54e77cee2f38c5c1d322ce76625c35f6121e44e Mon Sep 17 00:00:00 2001 From: Hemerson Varela Date: Wed, 1 Apr 2020 17:51:37 -0400 Subject: [PATCH 2/2] Fix copy/paste error in README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57aaee7..44fb3a8 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ This is where you would place any code that would create a table in the system This is where you would place any code required for back-end functionality -### app/Frostbite/Test/FrostUsers/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.