For my current project, I want to dynamically load routes from a database. For this to work I need to fetch these results before the actual controllers are loaded (ofcourse).
I want to accomplish this by adding the results to the bootstrap. However, every tutorial I tried on this subject (the very few) didn't work.
What people suggested was to call
$this->bootstrap('db');
However, this resource doesn't seem to exist.
I have the db resource in my application.ini.
Anything that could make this work?
Thanks alot!