private function _save($data)
 {
     $all = $this->_filterDone($data);
     $rx = Systemsetting::find(1);
     if ($rx === NULL) {
         $status = Systemsetting::create($all);
     } else {
         $status = $rx->update($all);
     }
     return $status;
 }