'datetime', ]; public function product() { return $this->belongsTo(Product::class, 'target_id') ->where('target_type', 'product'); } public function article() { return $this->belongsTo(Article::class, 'target_id') ->where('target_type', 'article'); } }