belongsTo(User::class, 'user_id'); } public function category(): BelongsTo { return $this->belongsTo(DealCategory::class, 'deal_category_id'); } public function interactions(): MorphMany { return $this->morphMany(Interaction::class, 'interactable'); } }