diff --git a/app/Status.php b/app/Status.php index dc0229374..c62437bdb 100644 --- a/app/Status.php +++ b/app/Status.php @@ -42,4 +42,9 @@ class Status extends Model return $this->hasMany(Like::class); } + public function comments() + { + return $this->hasMany(Comment::class); + } + }