回答編集履歴
1
誤字の修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
```
|
6
6
|
|
7
|
-
Route::get('hello','HelloController
|
7
|
+
Route::get('hello','HelloController@post');
|
8
8
|
|
9
9
|
```
|
10
10
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
Route::post('hello','HelloController
|
19
|
+
Route::post('hello','HelloController@post');
|
20
20
|
|
21
21
|
```
|
22
22
|
|