質問編集履歴
4
それらしき記述があるファイル追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -137,3 +137,13 @@
|
|
137
137
|
];
|
138
138
|
|
139
139
|
```
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
### それらしき記述があるファイル .env
|
144
|
+
|
145
|
+
```
|
146
|
+
|
147
|
+
DOC_ROOT=xxxxxxxxxxxxx.jp/
|
148
|
+
|
149
|
+
```
|
3
それらしき記述があるファイル追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -63,3 +63,77 @@
|
|
63
63
|
```
|
64
64
|
|
65
65
|
※app/Http/Controllers内のphpファイルにはそれらしき記述が見当たりませんでした。
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
### それらしき記述があるファイル config/view.php
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
<?php
|
74
|
+
|
75
|
+
return [
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
/*
|
80
|
+
|
81
|
+
|--------------------------------------------------------------------------
|
82
|
+
|
83
|
+
| View Storage Paths
|
84
|
+
|
85
|
+
|--------------------------------------------------------------------------
|
86
|
+
|
87
|
+
|
|
88
|
+
|
89
|
+
| Most templating systems load templates from disk. Here you may specify
|
90
|
+
|
91
|
+
| an array of paths that should be checked for your views. Of course
|
92
|
+
|
93
|
+
| the usual Laravel view path has already been registered for you.
|
94
|
+
|
95
|
+
|
|
96
|
+
|
97
|
+
*/
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
'paths' => [
|
102
|
+
|
103
|
+
resource_path('views'),
|
104
|
+
|
105
|
+
realpath(__DIR__."/../../../".env('DOC_ROOT'))
|
106
|
+
|
107
|
+
],
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
/*
|
112
|
+
|
113
|
+
|--------------------------------------------------------------------------
|
114
|
+
|
115
|
+
| Compiled View Path
|
116
|
+
|
117
|
+
|--------------------------------------------------------------------------
|
118
|
+
|
119
|
+
|
|
120
|
+
|
121
|
+
| This option determines where all the compiled Blade templates will be
|
122
|
+
|
123
|
+
| stored for your application. Typically, this is within the storage
|
124
|
+
|
125
|
+
| directory. However, as usual, you are free to change this value.
|
126
|
+
|
127
|
+
|
|
128
|
+
|
129
|
+
*/
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
'compiled' => realpath(storage_path('framework/views')),
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
];
|
138
|
+
|
139
|
+
```
|
2
それらしき記述があるファイル ファイル名追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,9 +52,9 @@
|
|
52
52
|
|
53
53
|
|
54
54
|
|
55
|
-
### それらしき記述があるファイル
|
55
|
+
### それらしき記述があるファイル routes/web.php
|
56
56
|
|
57
|
-
```
|
57
|
+
```
|
58
58
|
|
59
59
|
//public
|
60
60
|
|
1
それらしき記述があるファイル追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,3 +47,19 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
```
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
### それらしき記述があるファイル
|
56
|
+
|
57
|
+
```routes/web.php
|
58
|
+
|
59
|
+
//public
|
60
|
+
|
61
|
+
Route::pattern('index', 'index.html*');
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
※app/Http/Controllers内のphpファイルにはそれらしき記述が見当たりませんでした。
|