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',
|
|
|
|
];
|
2018-04-16 00:52:22 +00:00
|
|
|
|
|
|
|
public function profile()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Profile::class);
|
|
|
|
}
|
2018-04-19 05:57:31 +00:00
|
|
|
|
|
|
|
public function url()
|
|
|
|
{
|
2018-05-23 00:09:29 +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
|
|
|
}
|