Display data in table

[MAILPOET-3135]
This commit is contained in:
Pavel Dohnal
2021-03-02 14:25:35 +01:00
committed by Veljko V
parent dbbea72ef3
commit 74367ae40e
3 changed files with 18 additions and 7 deletions

View File

@ -30,7 +30,7 @@ class Logs {
$data['logs'][] = [
'name' => $log->getName(),
'message' => $log->getMessage(),
'created_at' => $log->getCreatedAt(),
'created_at' => $log->getCreatedAt()->format('Y-m-d H:i:s'),
];
}
$this->pageRenderer->displayPage('logs.html', $data);