평면도관리 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-19 14:18:12 +09:00
parent d480fb1dfa
commit 957e062833
5 changed files with 1858 additions and 2 deletions

View File

@@ -113,6 +113,17 @@ $routes->group('', ['namespace' => 'App\Controllers\Article'], static function (
});
/**
* 아파트 평면도
*/
$routes->group('article/ground_ctn', static function ($routes) {
$routes->get('lists', 'GroundCnt::lists');
$routes->get('detail/(:num)', 'GroundCnt::detail/$1');
$routes->get('getResultList', 'GroundCnt::getResultList');
$routes->get('excel', 'GroundCnt::excel');
});
});