1
0
Fork 0
pixelfed/app/User.php

40 lines
714 B
PHP
Raw Normal View History

2018-04-15 23:56:48 +00:00
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2018-04-16 00:23:02 +00:00
'name', 'username', 'email', 'password',
2018-04-15 23:56:48 +00:00
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function profile()
{
return $this->hasOne(Profile::class);
}
2018-04-19 05:57:31 +00:00
public function url()
{
2018-05-31 22:02:41 +00:00
return url(config('app.url') . '/' . $this->username);
2018-04-19 05:57:31 +00:00
}
2018-04-15 23:56:48 +00:00
}