From 03b05a48cd1e1f0b3b2620373e55a2eb82dc47f8 Mon Sep 17 00:00:00 2001 From: shibafu Date: Thu, 21 May 2020 22:28:34 +0900 Subject: [PATCH] =?UTF-8?q?CSV=E3=82=A8=E3=82=AF=E3=82=B9=E3=83=9D?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=AE=E6=97=A5=E4=BB=98=E6=9B=B8=E5=BC=8F?= =?UTF-8?q?=E3=81=8C=E4=BB=95=E6=A7=98=E3=81=A8=E9=81=95=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/CheckinCsvExporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/CheckinCsvExporter.php b/app/Services/CheckinCsvExporter.php index 7fe8dbf..a94ec32 100644 --- a/app/Services/CheckinCsvExporter.php +++ b/app/Services/CheckinCsvExporter.php @@ -42,7 +42,7 @@ class CheckinCsvExporter ->chunk(1000, function ($ejaculations) use ($csv) { foreach ($ejaculations as $ejaculation) { $record = [ - $ejaculation->ejaculated_date->format('Y-m-d H:i'), + $ejaculation->ejaculated_date->format('Y/m/d H:i'), $ejaculation->note, $ejaculation->link, ];