Add new method to User model

pull/9/head
Daniel Supernault 7 years ago
parent d391b1a2a6
commit 7e78261081

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

Loading…
Cancel
Save