Backend Service

This commit is contained in:
2019-03-11 19:48:59 +00:00
parent c1798a8ddf
commit 639d4bd908
4 changed files with 27 additions and 3 deletions
@@ -3,9 +3,13 @@
defined('BASEPATH') OR exit('No direct script access allowed');
class Provider extends Provider_Controller {
//var $patient_model;
public function index() {
$data = array();
$out = array();
$this->load->model('patient_model');
$out = $this->patient_model->getPatientList();
$data["patient_list"] = $out["patient_list"];
$this->renderProviderSecurePage('dash', $data);
}