-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlifepatch.json
More file actions
146 lines (146 loc) · 4.89 KB
/
lifepatch.json
File metadata and controls
146 lines (146 loc) · 4.89 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"project": {
"name" : "Lifepatch Accounting System",
"skema" : "./skema/Akun6.skema"
},
"path": {
"template_path": "./template/",
"laravel_path": "/Applications/AMPPS/www/laracoba",
"view_path": "/resources/views/",
"model_path": "/app/",
"controller_path": "/app/Http/Controllers/",
"route_path": "/app/Http/",
"migration_path": "./build/migrations/",
"seed_path": "./build/seeds/"
},
"table": [
{
"name": "migration",
"src": "{template_path}migration.php.tpl",
"dst": "{migration_path}",
"filename": "{filetime}_create_{name}_table.php"
},
{
"name": "request",
"src": "{template_path}request.php.tpl",
"dst": "{laravel_path}/app/Http/Requests/",
"filename": "{uclassname}Request.php"
},
{
"name": "seeding",
"src": "{template_path}seed.php.tpl",
"dst": "{seed_path}",
"filename": "{name}_seed.php"
},
{
"name": "model",
"src": "{template_path}model.php.tpl",
"dst": "{laravel_path}{model_path}",
"filename": "{uclassname}.php"
},
{
"name": "controller",
"src": "{template_path}controller.php.tpl",
"dst": "{laravel_path}{controller_path}",
"filename": "{uclassname}Controller.php"
},
{
"name": "repository",
"src": "{template_path}repository.php.tpl",
"dst": "{laravel_path}/app/Repositories/",
"filename": "{uclassname}Repository.php"
},
{
"name": "listview",
"src": "{template_path}view.list.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/list.blade.php"
},
{
"name": "indexview",
"src": "{template_path}view.index.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/index.blade.php"
},
{
"name": "formpartial",
"src": "{template_path}view.form.partial.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/form_partial.blade.php"
},
{
"name": "formrow",
"src": "{template_path}view.form.row.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/form_row.blade.php"
},
{
"name": "formedit",
"src": "{template_path}view.form.edit.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/form_edit.blade.php"
},
{
"name": "formcreate",
"src": "{template_path}view.form.create.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/form_create.blade.php"
},
{
"name": "modal",
"src": "{template_path}view.modal.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/modal.blade.php"
},
{
"name": "showview",
"src": "{template_path}view.show.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/show.blade.php"
},
{
"name": "createview",
"src": "{template_path}view.create.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/create.blade.php"
},
{
"name": "editview",
"src": "{template_path}view.table.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/table.blade.php"
},
{
"name": "tableview",
"src": "{template_path}view.edit.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "{classname}/edit.blade.php"
}
],
"main": [
{
"name": "routes",
"src": "{template_path}routes.php.tpl",
"dst": "{laravel_path}{route_path}",
"filename": "routes.php"
},
{
"name": "seedmain",
"src": "{template_path}seeder.php.tpl",
"dst": "{seed_path}",
"filename": "DatabaseSeeder.php"
},
{
"name": "main_layout",
"src": "{template_path}view.main.layout.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "main_layout.blade.php"
},
{
"name": "listhelper",
"src": "{template_path}helper.list.php.tpl",
"dst": "{laravel_path}/app/Helpers/",
"filename": "ListHelper.php"
}
]
}