hypothetical/app/User.php

47 lines
880 B
PHP
Raw Normal View History

2016-08-19 16:38:49 -04:00
<?php
2016-08-19 16:38:49 -04:00
namespace App;
use Illuminate\Notifications\Notifiable;
2016-01-03 23:55:13 -05:00
use Illuminate\Foundation\Auth\User as Authenticatable;
use Hash;
2016-08-19 16:38:49 -04:00
class User extends Authenticatable
{
use Notifiable;
2016-08-16 22:00:39 -04:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
2016-01-03 23:55:13 -05:00
protected $fillable = [
'name', 'email', 'password', 'api_token'
2016-01-03 23:55:13 -05:00
];
/**
2016-08-19 16:38:49 -04:00
* The attributes that should be hidden for arrays.
*
* @var array
*/
2016-01-03 23:55:13 -05:00
protected $hidden = [
'password', 'remember_token', 'api_token'
2016-01-03 23:55:13 -05:00
];
/**
* Update the user's password
*
* @var string
*/
public function updatePassword($oldpass, $newpass)
{
if (Hash::check($oldpass, $this->password)) {
$this->password = Hash::make($newpass);
$this->save();
return true;
}
return false;
}
}