morphedByMany(Order::class, 'taggable'); // } // /** // * 标签下的包裹 // * // */ // public function packages() // { // return $this->morphedByMany(OrderPackage::class, 'taggable'); // } public function scopeOrderTag() { return $this->where('type', self::TYPE_ORDER); } public function scopeOrderPackageTag() { return $this->where('type', self::TYPE_PACKAGE); } public function scopeAfterSaleTag() { return $this->where('type', self::TYPE_AFTER_SALE); } }