aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/User.php')
-rw-r--r--app/User.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/User.php b/app/User.php
index 870d27c..4d6d0ee 100644
--- a/app/User.php
+++ b/app/User.php
@@ -1,7 +1,9 @@
<?php
namespace App;
-use Illuminate\Notifications\Notifiable;
+
use Illuminate\Foundation\Auth\User as Authenticatable;
+use Illuminate\Notifications\Notifiable;
+
class User extends Authenticatable
{
use Notifiable;
@@ -13,6 +15,7 @@ class User extends Authenticatable
protected $fillable = [
'name', 'email', 'password',
];
+
/**
* The attributes that should be hidden for arrays.
*
@@ -21,4 +24,4 @@ class User extends Authenticatable
protected $hidden = [
'password', 'remember_token',
];
-} \ No newline at end of file
+}