From e4c50704e5c672a6bbc962042e047c6522285e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Fri, 16 Jun 2023 17:13:27 +0300 Subject: [PATCH] created_at field has been removed from the date filter. --- app/Abstracts/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Abstracts/Export.php b/app/Abstracts/Export.php index 3e4eb5adb..5ad500d08 100644 --- a/app/Abstracts/Export.php +++ b/app/Abstracts/Export.php @@ -48,7 +48,7 @@ abstract class Export implements FromCollection, HasLocalePreference, ShouldAuto { $map = []; - $date_fields = ['paid_at', 'invoiced_at', 'billed_at', 'due_at', 'issued_at', 'created_at', 'transferred_at']; + $date_fields = ['paid_at', 'invoiced_at', 'billed_at', 'due_at', 'issued_at', 'transferred_at']; $evil_chars = ['=', '+', '-', '@'];