-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtree
122 lines (122 loc) · 5.09 KB
/
tree
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
├── Document.md
├── LICENSE
├── README.md
├── app
│ ├── Http
│ │ ├── Controllers
│ │ │ ├── Api
│ │ │ │ └── TencentController.php
│ │ │ ├── Auth
│ │ │ │ ├── ConfirmPasswordController.php
│ │ │ │ ├── ForgotPasswordController.php
│ │ │ │ ├── LoginController.php
│ │ │ │ ├── PermissionController.php
│ │ │ │ ├── RegisterController.php
│ │ │ │ ├── ResetPasswordController.php
│ │ │ │ ├── RoleController.php
│ │ │ │ ├── UserController.php
│ │ │ │ └── VerificationController.php
│ │ │ ├── System
│ │ │ │ ├── ModelController.php
│ │ │ │ └── PageController.php
│ │ │ ├── ArticleController.php
│ │ │ ├── CustomerController.php
│ │ │ ├── DashController.php
│ │ │ ├── SourceController.php
│ │ │ └── taskController.php
│ │ └── Requests
│ │ └── PageRequest.php
│ ├── Models
│ │ ├── System
│ │ │ ├── Model.php
│ │ │ └── Page.php
│ │ ├── Customer.php
│ │ ├── Permission.php
│ │ ├── Role.php
│ │ └── task.php
│ ├── User.php
│ └── Widgets
│ ├── Form.php
│ ├── Table.php
│ └── Widget.php
├── database
│ ├── migrations
│ │ ├── 2017_05_02_091800_create_sources_table.php
│ │ ├── 2017_05_02_093615_create_articles_table.php
│ │ ├── 2021_04_21_062436_create_contracts_table.php
│ │ ├── 2021_04_21_062436_create_customers_table.php
│ │ ├── 2021_04_21_062436_create_leads_table.php
│ │ ├── 2021_04_21_062436_create_pages_table.php
│ │ └── 2021_04_21_062436_create_tasks_table.php
├── doc
├── public
│ ├── blacklogo.PNG
│ ├── dist
│ │ ├── css
│ │ │ ├── tabler.*.css
│ │ ├── js
│ │ │ ├── jquery-3.5.1.min.js
│ │ │ └── tabler.min.js
│ │ └── libs
│ │ ├── apexcharts
│ ├── logo.png
│ ├── vendor
│ │ ├── jsoneditor
│ │ └── toastr
├── resources
│ └── views
│ ├── auth
│ │ ├── login.blade.php
│ │ ├── passwords
│ │ │ ├── confirm.blade.php
│ │ │ ├── email.blade.php
│ │ │ └── reset.blade.php
│ │ ├── register.blade.php
│ │ └── verify.blade.php
│ ├── errors
│ │ ├── 401.blade.php
│ │ ├── 403.blade.php
│ │ ├── 404.blade.php
│ │ ├── 419.blade.php
│ │ ├── 429.blade.php
│ │ ├── 500.blade.php
│ │ ├── 503.blade.php
│ │ └── minimal.blade.php
│ ├── layouts
│ │ └── app.blade.php
│ ├── news.blade.php
│ └── tabler
│ ├── customers
│ │ └── edit.blade.php
│ ├── layouts
│ │ ├── container.blade.php
│ │ └── page.blade.php
│ ├── pages
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ └── index.blade.php
│ ├── partials
│ │ ├── alerts.blade.php
│ │ ├── header.blade.php
│ │ ├── sidebar.blade.php
│ │ └── toastr.blade.php
│ ├── reports
│ │ └── index.blade.php
│ └── widgets
│ ├── card.blade.php
│ ├── form
│ │ ├── date.blade.php
│ │ ├── input.blade.php
│ │ ├── map.blade.php
│ │ └── translate.blade.php
│ ├── form.blade.php
│ └── table.blade.php
├── routes
│ ├── api.php
│ ├── channels.php
│ ├── console.php
│ └── web.php
├── storage
│ ├── app
│ │ ├── mysql
│ │ │ └── laradmin2021_04_14_16_59_32.sql