| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class User extends Authenticatable |
||
| 9 | { |
||
| 10 | use Notifiable; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The attributes that are mass assignable. |
||
| 14 | * |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $fillable = [ |
||
| 18 | 'username', 'email', 'password', |
||
| 19 | ]; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The attributes that should be hidden for arrays. |
||
| 23 | * |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | protected $hidden = [ |
||
| 27 | 'password', 'remember_token', |
||
| 28 | ]; |
||
| 29 | |||
| 30 | public function activation() |
||
| 31 | { |
||
| 32 | return $this->hasOne('App\Models\Activation'); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function profile() |
||
| 38 | } |
||
| 39 | |||
| 40 | public function quizzes() |
||
| 45 |