Start adding admin routes and controllers

This commit is contained in:
DariusIII
2018-04-16 22:55:12 +02:00
parent 9a97fee541
commit d7be9eb7fe
8 changed files with 39 additions and 4 deletions
@@ -361,4 +361,13 @@ class BasePageController extends Controller
$this->setPrefs();
$this->pagerender();
}
/**
* @throws \Exception
*/
public function adminBasePage()
{
$this->setAdminPrefs();
$this->adminrender();
}
}