1
0

Rekeningenpagina

This commit is contained in:
Daniel Boutros
2017-03-28 17:22:23 +02:00
parent 68cb3611a4
commit 6425d3e524
2 changed files with 66 additions and 0 deletions

View File

@ -39,4 +39,11 @@ class Rekeningen
return $returnArray;
}
public function __construct(App $app)
{
$app->get('/rekeningen', function ($request, $response, $args) {
// Render index view
return $this->renderer->render($response, 'Rekeningen.phtml', $args);
});
}
}