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
1 changed files with 3 additions and 0 deletions

View File

@ -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.
*