diff --git a/src/Fieldtypes/Date.php b/src/Fieldtypes/Date.php index 515235ff76..3611adc227 100644 --- a/src/Fieldtypes/Date.php +++ b/src/Fieldtypes/Date.php @@ -197,7 +197,7 @@ public function preProcessIndex($data) return $start.' - '.$end; } - return Carbon::parse($data)->format($this->indexDisplayFormat()); + return $this->parseSaved($data)->format($this->indexDisplayFormat()); } private function saveFormat()