Krucas\LaravelUserEmailVerification\RedirectsUsers::verificationRedirectPath PHP Method

verificationRedirectPath() public method

Get the post register redirect path if user must verify account.
public verificationRedirectPath ( ) : string
return string
    public function verificationRedirectPath()
    {
        if (property_exists($this, 'verificationRedirectPath')) {
            return $this->verificationRedirectPath;
        }
        return property_exists($this, 'verificationRedirectTo') ? $this->verificationRedirectTo : route('verification.verify', [], false);
    }