Skip to content

Commit 752f25f

Browse files
committed
update file tree
1 parent 18ec767 commit 752f25f

File tree

1 file changed

+43
-3
lines changed

1 file changed

+43
-3
lines changed

readme.md

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,49 @@ Laravel Users can be configured directly in `/config/laravelusers.php` if you pu
201201
### File Tree
202202

203203
```bash
204-
205-
206-
204+
laravel-users/
205+
├── .gitignore
206+
├── LICENSE
207+
├── composer.json
208+
├── readme.md
209+
└── src
210+
├── LaravelUsersServiceProvider.php
211+
├── app
212+
│   └── Http
213+
│   └── Controllers
214+
│   └── UsersManagementController.php
215+
├── config
216+
│   └── laravelusers.php
217+
├── resources
218+
│   ├── lang
219+
│   │   └── en
220+
│   │   ├── app.php
221+
│   │   ├── forms.php
222+
│   │   ├── laravelusers.php
223+
│   │   └── modals.php
224+
│   └── views
225+
│   ├── layouts
226+
│   │   └── app.blade.php
227+
│   ├── modals
228+
│   │   ├── modal-delete.blade.php
229+
│   │   └── modal-save.blade.php
230+
│   ├── partials
231+
│   │   ├── form-status.blade.php
232+
│   │   └── styles.blade.php
233+
│   ├── scripts
234+
│   │   ├── check-changed.blade.php
235+
│   │   ├── datatables.blade.php
236+
│   │   ├── delete-modal-script.blade.php
237+
│   │   ├── save-modal-script.blade.php
238+
│   │   ├── toggleText.blade.php
239+
│   │   └── tooltips.blade.php
240+
│   └── usersmanagement
241+
│   ├── create-user.blade.php
242+
│   ├── edit-user.blade.php
243+
│   ├── show-user.blade.php
244+
│   └── show-users.blade.php
245+
└── routes
246+
└── web.php
207247
```
208248

209249
* Tree command can be installed using brew: `brew install tree`

0 commit comments

Comments
 (0)