1 | <?php namespace Mascame\Artificer\Auth; |
||
9 | class ArtificerUser extends Model implements AuthenticatableContract, CanResetPasswordContract { |
||
|
|||
10 | |||
11 | use Authenticatable, CanResetPassword; |
||
12 | |||
13 | |||
14 | /** |
||
15 | * The attributes that are mass assignable. |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $fillable = ['name', 'email', 'password']; |
||
20 | |||
21 | /** |
||
22 | * The attributes excluded from the model's JSON form. |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $hidden = ['password', 'remember_token']; |
||
27 | |||
28 | } |
||
29 |