Left file: appwork-v1_2_0/laravel-starter/app/User.php  
Right file: appwork-v1_2_1/laravel-starter/app/User.php  
1 <?php = 1 <?php
2     2  
3 namespace App;   3 namespace App;
4     4  
5 use Illuminate\Notifications\Notifiable;   5 use Illuminate\Notifications\Notifiable;
    -+ 6 use Illuminate\Contracts\Auth\MustVerifyEmail;
6 use Illuminate\Foundation\Auth\User as Authenticatable; = 7 use Illuminate\Foundation\Auth\User as Authenticatable;
7     8  
8 class User extends Authenticatable   9 class User extends Authenticatable
9 {   10 {
10     use Notifiable;   11     use Notifiable;
11     12  
12     /**   13     /**
13      * The attributes that are mass assignable.   14      * The attributes that are mass assignable.
14      *   15      *
15      * @var array   16      * @var array
16      */   17      */
17     protected $fillable = [   18     protected $fillable = [
18         'name', 'email', 'password',   19         'name', 'email', 'password',
19     ];   20     ];
20     21  
21     /**   22     /**
22      * The attributes that should be hidden for arrays.   23      * The attributes that should be hidden for arrays.
23      *   24      *
24      * @var array   25      * @var array
25      */   26      */
26     protected $hidden = [   27     protected $hidden = [
27         'password', 'remember_token',   28         'password', 'remember_token',
28     ];   29     ];
29 }   30 }