Skip to content

Instantly share code, notes, and snippets.

@tushargugnani
Created October 2, 2018 07:26
Show Gist options
  • Save tushargugnani/0906b8caa08cd8c4eea181e06fb35d24 to your computer and use it in GitHub Desktop.
Save tushargugnani/0906b8caa08cd8c4eea181e06fb35d24 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable implements MustVerifyEmail
{
use Notifiable;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment