質問編集履歴
2
コードの再修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -70,10 +70,6 @@
|
|
70
70
|
|
71
71
|
return view('user.thanks');
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
}
|
76
|
-
|
77
73
|
}
|
78
74
|
|
79
75
|
}
|
1
コードのミスを修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
use Illuminate\Http\Request;
|
24
24
|
|
25
25
|
|
26
|
+
|
27
|
+
class ContactController extends Controller {
|
26
28
|
|
27
29
|
public function send(Request $request) {
|
28
30
|
|
@@ -74,6 +76,8 @@
|
|
74
76
|
|
75
77
|
}
|
76
78
|
|
79
|
+
}
|
80
|
+
|
77
81
|
```
|
78
82
|
|
79
83
|
|