Browse Source

Add notifiable trait to default user.

Taylor Otwell 7 years ago
parent
commit
9575714700
1 changed files with 3 additions and 0 deletions
  1. 3 0
      app/User.php

+ 3 - 0
app/User.php

@@ -2,10 +2,13 @@
 
 namespace App;
 
+use Illuminate\Notifications\Notifiable;
 use Illuminate\Foundation\Auth\User as Authenticatable;
 
 class User extends Authenticatable
 {
+    use Notifiable;
+
     /**
      * The attributes that are mass assignable.
      *