how load model in another modules in hmvc in codeigniter?
$this->load->model("module01/models01");
You can call any models from any module like this. Tested.
$this->load->model("module01/models01");
You can call any models from any module like this. Tested.