* @license Proprietary */ final class UserEmailVerification extends AbstractModel { public $incrementing = true; protected $table = 'user_email_verification'; protected $fillable = [ 'email', 'token', 'is_complete', 'is_active', 'is_sent' ]; /** * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(user::class, 'email'); } }