回答編集履歴
2
修正
test
CHANGED
@@ -15,3 +15,9 @@
|
|
15
15
|
+ Route::get('hello', [HelloController::class, 'index']);
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
version 8 からルーティングの書き方が変わってます。
|
22
|
+
|
23
|
+
書籍を参考にするなら、書籍のバージョンと合わせて学習すべきです。
|
1
修正
test
CHANGED
@@ -12,6 +12,6 @@
|
|
12
12
|
|
13
13
|
- Route::get('hello','HelloController@index');
|
14
14
|
|
15
|
-
+ Route::get('hello', [
|
15
|
+
+ Route::get('hello', [HelloController::class, 'index']);
|
16
16
|
|
17
17
|
```
|