Skip to content

Commit b617f51

Browse files
Update README.md
1 parent b375ca6 commit b617f51

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

README.md

+17-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,23 @@ return [
2525
That is it your module is now enabled for your project. Following will be the ideal
2626
structure for your admin module
2727

28-
App<br>
29-
|-- Admin<br>
30-
|-- Controllers<br>
31-
|-- Views<br>
32-
|-- config.php<br>
33-
|-- routes.php
28+
```
29+
laravel-project/
30+
app/
31+
└── Modules/
32+
└── Admin/
33+
├── 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+
```
3445
3546
To access your module configuration use lowercase module name
3647
Ex.

0 commit comments

Comments
 (0)