Dash pattient controller added

This commit is contained in:
2019-03-02 23:59:36 +00:00
parent af0aa20e49
commit cdc2c263e8
7 changed files with 642 additions and 9 deletions
@@ -0,0 +1,22 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Patient extends Provider_Controller {
public function index() {
$data = array();
$this->renderProviderSecurePage('patient/patientreport', $data);
}
public function addnew() {
$data = array();
$this->renderProviderSecurePage('patient/newpatient', $data);
}
public function report() {
$data = array();
$this->renderProviderSecurePage('patient/patientreport', $data);
}
}