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