Added remember_token to protected $hidden variable
This commit is contained in:
parent
443cad582c
commit
65db159b2d
|
@ -17,7 +17,7 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $hidden = array('password');
|
protected $hidden = array('password', 'remember_token');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the unique identifier for the user.
|
* Get the unique identifier for the user.
|
||||||
|
|
Loading…
Reference in New Issue