Laravel-admin 创建美观的树形无限极分类视图

https://www.cnblogs.com/yehuisir/p/12377891.html
setParentColumn('pid'); // 父ID
$this->setOrderColumn('sort'); // 排序
$this->setTitleColumn('cate_name'); // 标题
}

// 该分类下的品牌
public function brand()
{
return $this->hasMany(BrandModel::class, 'cate_id', $this->getKeyName());
}

/**
* 该分类的子分类
*/
public function child()
{
return $this->hasMany(get_class($this), 'pid', $this->getKeyName());
}

/**
* 该分类的父分类
*/
public function parent()
{
return $this->hasOne(get_class($this), $this->getKeyName(), 'pid');
}
}

    A+
发布日期:2021年07月27日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: