We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8441b commit 173992aCopy full SHA for 173992a
README.md
@@ -78,15 +78,18 @@ class HomeController extends Controller
78
`
79
Finally, create a view file called "index.blade.php" in App/Modules/Admin/Views folder with following contents:
80
81
+
82
`<h1>Welcome to Admin Module</h1>`
83
84
85
Now, once we have folder and file structure defined we have to enable admin module:
86
87
open config/modules.php file and add following line:
88
89
-`return [`
-` 'admin' => 'Admin Panel'`
90
-`];`
+`return [
91
+ 'admin' => 'Admin Panel'
92
+];
93
+`
94
95
Done, go to browser and hit your local website instance and see if you get "Welcome to Admin Module" message on your screen
0 commit comments