経過時間のフォーマットを日から総日数に修正

This commit is contained in:
shibafu 2017-10-22 20:35:09 +09:00
parent eb6487c4cf
commit 1dbc573833
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}