diff --git a/app/models/Invitation.php b/app/models/Invitation.php index 885a88334fdc..bb9f4db77a04 100755 --- a/app/models/Invitation.php +++ b/app/models/Invitation.php @@ -9,12 +9,12 @@ class Invitation extends EntityModel public function contact() { - return $this->belongsTo('Contact'); + return $this->belongsTo('Contact')->withTrashed(); } public function user() { - return $this->belongsTo('User'); + return $this->belongsTo('User')->withTrashed(); } public function getLink()