class Theme extends BaseModel
{
public function products(){
return $this -> belongsToMany(
'Product','theme_product','product_id','theme_id'
);
}
public static function getRecentTheme(){
$themes = self::with('Products') -> select();
return $themes;
}
}
Theme 当前模型
Product 关联模型
theme_product 中间表
想对Product下的内容进行排序!
想对Product下的内容进行排序!
想对Product下的内容进行排序! 重要的事说3次~~~
跪求大神
慕粉3704614
獣灬