%PDF- %PDF-
Direktori : /home/ugotscom/public_html/sterren/application/modules/dashboard/models/ |
Current File : /home/ugotscom/public_html/sterren/application/modules/dashboard/models/Dashboard_model.php |
<?php class Dashboard_model extends CI_Model{ public function get_count() { $this->db->select('*'); $this->db->from('employees'); $query = $this->db->get(); return $query->num_rows(); } public function hot_leads() { $this->db->select('*'); $this->db->from('employees'); $this->db->where('lead_type_id',1); $query = $this->db->get(); return $query->num_rows(); } public function closed_leads() { $this->db->select('*'); $this->db->from('employees'); $this->db->where('lead_type_id',4); $query = $this->db->get(); return $query->num_rows(); } }