add() 공개 메소드

Add a category to the DB.
public add ( $name, $text ) : NotificationCategory
$name
$text
리턴 Fenos\Notifynder\Models\NotificationCategory
예제 #1
0
 /**
  * Add a category
  *
  * @param $name
  * @param $text
  * @return static
  */
 public function addCategory($name, $text)
 {
     return $this->notifynderCategory->add($name, $text);
 }