1
0
Fork 0

Update Profile model, add reported relationship

This commit is contained in:
Daniel Supernault 2020-02-11 21:41:16 -07:00
parent e33fb88f71
commit a34f38633c
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 0 deletions

View File

@ -308,4 +308,10 @@ class Profile extends Model
{
return $this->hasMany(Story::class);
}
public function reported()
{
return $this->hasMany(Report::class, 'object_id');
}
}