質問編集履歴
1
ルーティング情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,19 @@
|
|
14
14
|
|
15
15
|
### 該当のソースコード
|
16
16
|
|
17
|
+
ルーティング
|
17
18
|
|
19
|
+
Route::get('/', [InputFormController::class, 'index']);
|
20
|
+
|
21
|
+
Route::post('/confirm', [InputFormController::class, 'confirm']);
|
22
|
+
|
23
|
+
Route::get('/thanks', [InputFormController::class, 'thanks']);
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
コントローラ
|
18
30
|
|
19
31
|
class InputFormController extends Controller
|
20
32
|
|