We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b375ca6 commit b617f51Copy full SHA for b617f51
README.md
@@ -25,12 +25,23 @@ return [
25
That is it your module is now enabled for your project. Following will be the ideal
26
structure for your admin module
27
28
-App<br>
29
- |-- Admin<br>
30
- |-- Controllers<br>
31
- |-- Views<br>
32
- |-- config.php<br>
33
- |-- routes.php
+```
+laravel-project/
+ app/
+ └── Modules/
+ └── Admin/
+ ├── Controllers/
34
+ │ └── AdminController.php
35
+ ├── Models/
36
+ │ └── User.php
37
+ ├── Views/
38
+ │ └── index.blade.php
39
+ ├── Translations/
40
+ │ └── en/
41
+ │ └── example.php
42
+ ├── routes.php
43
+ └── config.php
44
45
46
To access your module configuration use lowercase module name
47
Ex.
0 commit comments