From 01c1f74d09cd45a770632da049b5d228de8a2f7b Mon Sep 17 00:00:00 2001 From: "y.higashide" Date: Wed, 24 Sep 2025 16:55:46 +0900 Subject: [PATCH] =?UTF-8?q?routes/web.php=20=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index 9db15c6..6651f5f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,4 +1,3 @@ - name('login'); // マイページ -Route::get('/mypage', [MypageController::class, 'index'])->name('mypage.index'); +Route::get('/mypage', [MypageController::class, 'index'])->name('mypage'); // ユーザー情報確認・編集 Route::get('/user/info', [UserInfoController::class, 'show'])->name('user.info');