add() public method

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