12 lines
307 B
PHP
Raw Normal View History

2023-08-15 13:56:04 +02:00
<?php /** @var $this \App\View\RouteView */ ?>
<?php
foreach ($this->routes->getRoutes() as $route) {
echo sprintf('<a href="%s">%s</a> - %s::%s<br>',
$route->getRoute()->path,
$route->getRoute()->path,
$route->getController(),
$route->getMethod()
);
}
?>