I am looking at the example https://www.koolreport.com/docs/dashboard/quick_start/
I have an existing codeigniter application with left nav and other components up and running. Currently if i include the Dashboard Application and bootstrap it using App::create()->run(); in the controller, it redirects the entire application to the Dashboard Application.
I want the user to stay in my codeigniter application and show the dashboard only when the user clicks on a left nav menu item. For ex. in my existing application, I would like to add a left nav menu - Payments and show PaymentBoard when the user clicks on the menu.
How do I achieve this?