insert($data); return $result; } public function getRecharge($data) { $result = $this->where($data)->find(); return $result; } public function selectRecharge($condition) { $result = $this->where($condition)->paginate(10); return $result; } }