![]() |
View routes does not show in toolbar. - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: View routes does not show in toolbar. (/showthread.php?tid=87984) |
View routes does not show in toolbar. - nfaiz - 07-03-2023 I'm using below code in Config/Routes.php PHP Code: $routes->view('about', 'pages/about'); and does not show in Toolbar under Routes tab. Is it normal? RE: View routes does not show in toolbar. - kenjis - 07-03-2023 View routes are closure routes internally. I don't know why, but Closure routes are not shown in the Toolbar. See https://github.com/codeigniter4/CodeIgniter4/pull/2587/files#diff-9ecabeab493a07d534876a8481dc61ce7720c5996ce4bb175c4887c1cdbb3ccdR157 RE: View routes does not show in toolbar. - kenjis - 07-03-2023 I will improve the output. See https://github.com/codeigniter4/CodeIgniter4/pull/7646 |