pixelfed/app/User.php

53 wiersze
1020 B
PHP
Czysty Zwykły widok Historia

2018-04-15 23:56:48 +00:00
<?php
namespace App;
2018-06-14 00:52:42 +00:00
use Illuminate\Database\Eloquent\SoftDeletes;
2018-04-15 23:56:48 +00:00
use Illuminate\Foundation\Auth\User as Authenticatable;
2018-08-28 03:07:36 +00:00
use Illuminate\Notifications\Notifiable;
2018-04-15 23:56:48 +00:00
class User extends Authenticatable
{
2018-06-14 00:52:42 +00:00
use Notifiable, SoftDeletes;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
2018-07-24 00:52:29 +00:00
protected $dates = ['deleted_at', 'email_verified_at'];
2018-04-15 23:56:48 +00:00
/**
* 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-08-28 03:07:36 +00:00
return url(config('app.url').'/'.$this->username);
2018-04-19 05:57:31 +00:00
}
2018-07-24 00:52:29 +00:00
public function settings()
{
return $this->hasOne(UserSetting::class);
}
2018-04-15 23:56:48 +00:00
}