model->getReportTypes($type); } public function getReport($where) { return $this->model->where($where)->first(); } public function addInfo($data) { return $this->model->create($data); } public function getCount($where) { return $this->model->where($where)->count(); } }