From 9575714700fd1c1796f7376a4bdc65d3683409ff Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 29 Jun 2016 21:02:16 -0500 Subject: [PATCH] Add notifiable trait to default user. --- app/User.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/User.php b/app/User.php index 75741ae4..bfd96a6a 100644 --- a/app/User.php +++ b/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. *