質問編集履歴
1
routesとアクセスURLの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,6 +60,68 @@
|
|
60
60
|
|
61
61
|
|
62
62
|
|
63
|
+
web.php(\routes\)
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
Route::group([
|
68
|
+
|
69
|
+
'as' => 'admin.',
|
70
|
+
|
71
|
+
'namespace' => 'Admin',
|
72
|
+
|
73
|
+
'prefix' => 'admin'
|
74
|
+
|
75
|
+
], function () {
|
76
|
+
|
77
|
+
Route::group([
|
78
|
+
|
79
|
+
'prefix' => 'user',
|
80
|
+
|
81
|
+
'as' => 'user.',
|
82
|
+
|
83
|
+
], function () {
|
84
|
+
|
85
|
+
Route::get('/', 'UserController@index')->name('index');
|
86
|
+
|
87
|
+
});
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
// うまくいくController+View
|
92
|
+
|
93
|
+
Route::group([
|
94
|
+
|
95
|
+
'prefix' => 'news',
|
96
|
+
|
97
|
+
'as' => 'news.',
|
98
|
+
|
99
|
+
], function () {
|
100
|
+
|
101
|
+
Route::get('/', 'NewsController@index')->name('index');
|
102
|
+
|
103
|
+
});
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
// 以下他のControllerの記述で割愛
|
108
|
+
|
109
|
+
});
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
```
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
アクセスURLは
|
118
|
+
|
119
|
+
http://localhost:8000/admin/user
|
120
|
+
|
121
|
+
となります。
|
122
|
+
|
123
|
+
|
124
|
+
|
63
125
|
他のViewとControllerだとうまくいくのに、
|
64
126
|
|
65
127
|
このViewだけうまくいきませんでした。
|