| 1234567891011121314151617181920212223242526 | 
							- <?php
 
- namespace App;
 
- use Illuminate\Foundation\Auth\User as BaseUser;
 
- class User extends BaseUser
 
- {
 
-     /**
 
-      * The attributes that are mass assignable.
 
-      *
 
-      * @var array
 
-      */
 
-     protected $fillable = [
 
-         'name', 'email', 'password',
 
-     ];
 
-     /**
 
-      * The attributes excluded from the model's JSON form.
 
-      *
 
-      * @var array
 
-      */
 
-     protected $hidden = [
 
-         'password', 'remember_token',
 
-     ];
 
- }
 
 
  |