This commit is contained in:
TheGamecraft
2018-07-16 20:28:57 -04:00
parent 2b2b726838
commit af458ad411
7 changed files with 75 additions and 4 deletions

View File

@@ -26,4 +26,9 @@ class User extends Authenticatable
protected $hidden = [
'password', 'remember_token',
];
public function logs()
{
return $this->hasMany(Log::class);
}
}