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

View File

@@ -17,7 +17,7 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
*
* @var array
*/
protected $hidden = array('password');
protected $hidden = array('password', 'remember_token');
/**
* Get the unique identifier for the user.