Added remember_token to protected $hidden variable

This commit is contained in:
Juukie14 2014-04-21 20:58:38 +02:00
parent 443cad582c
commit 65db159b2d
1 changed files with 1 additions and 1 deletions

View File

@ -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.