Add notifiable trait to default user.

This commit is contained in:
Taylor Otwell
2016-06-29 21:02:16 -05:00
parent 737b5eb3ef
commit 9575714700

View File

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