-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlifepatch_view.json
More file actions
92 lines (92 loc) · 3.12 KB
/
lifepatch_view.json
File metadata and controls
92 lines (92 loc) · 3.12 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
{
"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": "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": "main_layout",
"src": "{template_path}view.main.layout.php.tpl",
"dst": "{laravel_path}{view_path}",
"filename": "main_layout.blade.php"
}
]
}