where('id',$this->data_id)->first(); } public function category(){ return $this->hasOne(Category::class,'id','data_id'); } public function getBrandAttribute(){ return Brand::where('id', $this->data_id)->first(); } public function getTagAttribute(){ return Tag::where('id', $this->data_id)->first(); } }