Ejemplo n.º 1
0
 /**
  * 加精华
  * @param Topic $topic
  */
 public static function excellent(Topic $topic)
 {
     $action = $topic->status == Topic::STATUS_ACTIVE ? Topic::STATUS_EXCELLENT : Topic::STATUS_ACTIVE;
     $topic->setAttributes(['status' => $action]);
     $topic->save();
 }