模型無限分類
// 模型檔案
public function children() {
return $this->hasMany(get_class($this), 'parent_id' ,'id');
}
public function allChildren() {
return $this->children()->with( 'allChildren' );
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結