回答編集履歴

1

修正

2019/07/24 04:47

投稿

m.ts10806
m.ts10806

スコア80854

test CHANGED
@@ -21,3 +21,21 @@
21
21
  use Illuminate\Support\Facades\Route;
22
22
 
23
23
  ```
24
+
25
+ その中のコードを読み進めていくとroutes/web.phpを見に行っているのも分かりますね。
26
+
27
+ ```php
28
+
29
+ protected function mapWebRoutes()
30
+
31
+ {
32
+
33
+ Route::middleware('web')
34
+
35
+ ->namespace($this->namespace)
36
+
37
+ ->group(base_path('routes/web.php'));
38
+
39
+ }
40
+
41
+ ```