Hi,
I am using afterFetch() to manipulate my data for my needs. Example: I convert the English date to a German date:
public function afterFetch() {
$this->date = (new \DateTime($this->date))->format('d.m.Y');
}
How can I get the original date now without to reconvert it? I need the original English date from my database. afterFetch seems to overwrite all other methods I am trying to set.
Thanks!