質問編集履歴
4
それらしき記述があるファイル追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -67,4 +67,9 @@
|
|
67
67
|
'compiled' => realpath(storage_path('framework/views')),
|
68
68
|
|
69
69
|
];
|
70
|
+
```
|
71
|
+
|
72
|
+
### それらしき記述があるファイル .env
|
73
|
+
```
|
74
|
+
DOC_ROOT=xxxxxxxxxxxxx.jp/
|
70
75
|
```
|
3
それらしき記述があるファイル追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -30,4 +30,41 @@
|
|
30
30
|
//public
|
31
31
|
Route::pattern('index', 'index.html*');
|
32
32
|
```
|
33
|
-
※app/Http/Controllers内のphpファイルにはそれらしき記述が見当たりませんでした。
|
33
|
+
※app/Http/Controllers内のphpファイルにはそれらしき記述が見当たりませんでした。
|
34
|
+
|
35
|
+
### それらしき記述があるファイル config/view.php
|
36
|
+
```
|
37
|
+
<?php
|
38
|
+
return [
|
39
|
+
|
40
|
+
/*
|
41
|
+
|--------------------------------------------------------------------------
|
42
|
+
| View Storage Paths
|
43
|
+
|--------------------------------------------------------------------------
|
44
|
+
|
|
45
|
+
| Most templating systems load templates from disk. Here you may specify
|
46
|
+
| an array of paths that should be checked for your views. Of course
|
47
|
+
| the usual Laravel view path has already been registered for you.
|
48
|
+
|
|
49
|
+
*/
|
50
|
+
|
51
|
+
'paths' => [
|
52
|
+
resource_path('views'),
|
53
|
+
realpath(__DIR__."/../../../".env('DOC_ROOT'))
|
54
|
+
],
|
55
|
+
|
56
|
+
/*
|
57
|
+
|--------------------------------------------------------------------------
|
58
|
+
| Compiled View Path
|
59
|
+
|--------------------------------------------------------------------------
|
60
|
+
|
|
61
|
+
| This option determines where all the compiled Blade templates will be
|
62
|
+
| stored for your application. Typically, this is within the storage
|
63
|
+
| directory. However, as usual, you are free to change this value.
|
64
|
+
|
|
65
|
+
*/
|
66
|
+
|
67
|
+
'compiled' => realpath(storage_path('framework/views')),
|
68
|
+
|
69
|
+
];
|
70
|
+
```
|
2
それらしき記述があるファイル ファイル名追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -25,8 +25,8 @@
|
|
25
25
|
```
|
26
26
|
|
27
27
|
|
28
|
-
### それらしき記述があるファイル
|
29
|
-
|
28
|
+
### それらしき記述があるファイル routes/web.php
|
29
|
+
```
|
30
30
|
//public
|
31
31
|
Route::pattern('index', 'index.html*');
|
32
32
|
```
|
1
それらしき記述があるファイル追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -22,4 +22,12 @@
|
|
22
22
|
├─vendor
|
23
23
|
index.blade.php これを表示したい
|
24
24
|
|
25
|
-
```
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
### それらしき記述があるファイル
|
29
|
+
```routes/web.php
|
30
|
+
//public
|
31
|
+
Route::pattern('index', 'index.html*');
|
32
|
+
```
|
33
|
+
※app/Http/Controllers内のphpファイルにはそれらしき記述が見当たりませんでした。
|