From 1c555a0a18783fa56136a046fb7e7ce07cc73ded Mon Sep 17 00:00:00 2001 From: Yuka Higashide Date: Tue, 9 Sep 2025 13:48:42 +0900 Subject: [PATCH] =?UTF-8?q?=E5=85=B1=E9=80=9A=E9=83=A8=E5=93=81=E5=91=BC?= =?UTF-8?q?=E3=81=B3=E5=87=BA=E3=81=97=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/layouts/app.blade.php | 21 ++++++-- .../views/partials/mypage_menu.blade.php | 2 +- .../views/partials/mypagefootermenu.blade.php | 2 +- routes/web.php | 53 ++++++++++++++++++- 4 files changed, 70 insertions(+), 8 deletions(-) diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index f71c378..a02655b 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -17,7 +17,17 @@ + @yield('head') + @@ -31,14 +41,15 @@ {{-- フッターメニュー --}} @include('partials.mypagefootermenu') - {{-- ニュース・フッターiframe --}} - - + {{-- ニュース --}} + @include('partials.news') + {{-- フッター --}} + @include('partials.footer') diff --git a/resources/views/partials/mypage_menu.blade.php b/resources/views/partials/mypage_menu.blade.php index 8fad281..1bf0bec 100644 --- a/resources/views/partials/mypage_menu.blade.php +++ b/resources/views/partials/mypage_menu.blade.php @@ -19,7 +19,7 @@ if (!isset($active_menu)) $active_menu = ''; - + diff --git a/resources/views/partials/mypagefootermenu.blade.php b/resources/views/partials/mypagefootermenu.blade.php index e9d7436..12a1e4a 100644 --- a/resources/views/partials/mypagefootermenu.blade.php +++ b/resources/views/partials/mypagefootermenu.blade.php @@ -26,7 +26,7 @@
- +

定期契約履歴を
見る

diff --git a/routes/web.php b/routes/web.php index aecf642..6ff3109 100644 --- a/routes/web.php +++ b/routes/web.php @@ -151,5 +151,56 @@ Route::post('/login', function (Request $request) { // ウェルネット決済画面(仮) Route::get('/wellnet/payment', function (): mixed { - return '

ウェルネット決済画面

'; + $html = << + + + + ウェルネット決済画面(仮) + + + +
+
+
クレジットでのお支払い
+
+ クレジット +
+
+
+
コンビニでのお支払い
+
ローソン
+
ファミリーマート
+
サークルKサンクス
+
ミニストップ
+
セイコーマート
+
デイリーヤマザキ
+
+
+
銀行でのお支払い
+
+ ATM +
+
+ ネットバンキング +
+
+
+ + + HTML; + return $html; })->name('wellnet.payment');