sentinel
sentinel copied to clipboard
User notifiable trait
@brunogaspar and team
On EloquentUser class i added a Notifiable Trait. Which comes handy when using laravel notifications.Had to add that in one of my project.
My basic contribution
use Illuminate\Notifications\Notifiable;
class EloquentUser extends Model implements PermissibleInterface, PersistableInterface, RoleableInterface, UserInterface { use PermissibleTrait,Notifiable;
Hope this is useful Thanks,