84 lines
1.9 KiB
PHP
84 lines
1.9 KiB
PHP
<?php namespace App\Models;
|
|
|
|
use Illuminate\Auth\Authenticatable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Auth\Passwords\CanResetPassword;
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
|
|
|
|
use Authenticatable, CanResetPassword, SoftDeletes;
|
|
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'users';
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = array('password');
|
|
|
|
public function account() {
|
|
return $this->belongsTo('\App\Models\Account');
|
|
}
|
|
|
|
public function activity() {
|
|
return $this->hasMany('\App\Models\Activity');
|
|
}
|
|
|
|
/**
|
|
* Get the unique identifier for the user.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getAuthIdentifier() {
|
|
return $this->getKey();
|
|
}
|
|
|
|
/**
|
|
* Get the password for the user.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getAuthPassword() {
|
|
return $this->password;
|
|
}
|
|
|
|
/**
|
|
* Get the e-mail address where password reminders are sent.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getReminderEmail() {
|
|
return $this->email;
|
|
}
|
|
|
|
public function getRememberToken() {
|
|
return $this->remember_token;
|
|
}
|
|
|
|
public function setRememberToken($value) {
|
|
$this->remember_token = $value;
|
|
}
|
|
|
|
public function getRememberTokenName() {
|
|
return 'remember_token';
|
|
}
|
|
|
|
public static function boot() {
|
|
parent::boot();
|
|
|
|
static::creating(function($user) {
|
|
$user->confirmation_code = str_random();
|
|
});
|
|
}
|
|
|
|
}
|