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