Update EmailVerification model

This commit is contained in:
Daniel Supernault 2019-02-03 14:48:34 -07:00
parent a0bebad28c
commit 4415530458
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -13,4 +13,9 @@ class EmailVerification extends Model
return "{$base}{$path}";
}
public function user()
{
return $this->belongsTo(User::class);
}
}