1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 18:14:04 +00:00

Make the (Scoped)Comment model distinction clearer

This commit is contained in:
lukinovec 2023-05-24 15:12:35 +02:00
parent 47fe86c21e
commit 1f9a344f33
3 changed files with 7 additions and 3 deletions

View file

@ -24,6 +24,7 @@ class Post extends Model
public function scoped_comments(): HasMany
{
return $this->hasMany(Comment::class);
// ScopedComment = Comment model with the BelongsToPrimaryModel trait
return $this->hasMany(ScopedComment::class);
}
}