Exemple #1
0
 /**
  * Returns all childeren of the item
  *
  * @return Lavary\Menu\Collection
  */
 public function all()
 {
     return $this->builder->whereParent($this->id, true);
 }
Exemple #2
0
 /**
  * Returns childeren of the item
  *
  * @return array
  */
 public function children()
 {
     return $this->builder->whereParent($this->id);
 }