In the front-end I am using this to get the name of authors.
$allVersions.First.Author.Name || $allVersions.Last.Author.Name
What about server-side? I tried things such as $this->Author and other variations but they don't return anything.
How would I do this server-side if I am trying to get the name of the person who first created an article and the name of the last person who has edited it?