1
0
Fork 0

Add new method to User model

This commit is contained in:
Daniel Supernault 2018-04-18 23:57:31 -06:00
parent d391b1a2a6
commit 7e78261081
1 changed files with 5 additions and 0 deletions

View File

@ -31,4 +31,9 @@ class User extends Authenticatable
{
return $this->hasOne(Profile::class);
}
public function url()
{
return url('/' . $this->username);
}
}