*/ public function normalize(mixed $value): ?array { if (!$value instanceof Carbon) { return null; } return [ 'raw' => $value, 'human' => $value->format('d.m.Y'), ]; } }