Files
confirms/app/Config/Routes.php
2025-12-02 12:21:12 +09:00

14 lines
211 B
PHP

<?php
use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
$routes->get('/', 'Home::index');
$routes->get('/hello', 'Home::hello');
$routes->get('/dashboard', 'Main::dashboard');