Update Profile model, add hasFollowRequestById method

pull/1560/head
Daniel Supernault 6 years ago
parent 5d24b254e5
commit a5a5224d0d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -296,4 +296,11 @@ class Profile extends Model
{
return $this->hasMany(Collection::class);
}
public function hasFollowRequestById(int $id)
{
return FollowRequest::whereFollowerId($id)
->whereFollowingId($this->id)
->exists();
}
}

Loading…
Cancel
Save