12-21-2017, 10:15 AM
Code-igniter maintains its own list of loaded components. But for you can make another folder for access blog_model
$this->load->model('admin/blog_model');
$this->load->model('legacy/blog_model','legacy_blog_model');
If you are use this structure than its working fine.
$this->load->model('admin/blog_model');
$this->load->model('legacy/blog_model','legacy_blog_model');
If you are use this structure than its working fine.