Skip to content

Commit

Permalink
On EloquentUser added Notifiable Trait Found it useful on a project i…
Browse files Browse the repository at this point in the history
… was working on wherr i had to notify a user
  • Loading branch information
dbrax committed Feb 19, 2021
1 parent 6f641c0 commit c25ea5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Users/EloquentUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@
use Cartalyst\Sentinel\Persistences\EloquentPersistence;
use Cartalyst\Sentinel\Persistences\PersistableInterface;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Notifications\Notifiable;

class EloquentUser extends Model implements PermissibleInterface, PersistableInterface, RoleableInterface, UserInterface
{
use PermissibleTrait;
use PermissibleTrait,Notifiable;

/**
* The table associated with the model.
Expand Down

0 comments on commit c25ea5a

Please sign in to comment.