From 1dbc5738334a75c910f419f8d49587d6efab9167 Mon Sep 17 00:00:00 2001 From: shibafu Date: Sun, 22 Oct 2017 20:35:09 +0900 Subject: [PATCH] =?UTF-8?q?=E7=B5=8C=E9=81=8E=E6=99=82=E9=96=93=E3=81=AE?= =?UTF-8?q?=E3=83=95=E3=82=A9=E3=83=BC=E3=83=9E=E3=83=83=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=97=A5=E3=81=8B=E3=82=89=E7=B7=8F=E6=97=A5=E6=95=B0=E3=81=AB?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/HomeController.php | 2 +- app/Http/Controllers/UserController.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index b7effe3..a3b447d 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -44,7 +44,7 @@ SQL if (count($ejaculations) > 0) { $currentSession = Carbon::parse($ejaculations[0]['ejaculated_date']) ->diff(Carbon::now()) - ->format('%d日 %h時間 %i分'); + ->format('%a日 %h時間 %i分'); } else { $currentSession = null; } diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index 8e07b63..3f2cad8 100644 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -40,7 +40,7 @@ SQL if (count($ejaculations) > 0) { $currentSession = Carbon::parse($ejaculations[0]['ejaculated_date']) ->diff(Carbon::now()) - ->format('%d日 %h時間 %i分'); + ->format('%a日 %h時間 %i分'); } else { $currentSession = null; }