Terms & Condition

Sangam AV Hospital
Welcome to Sangam AV Hospital. By using our website, booking appointments, or availing any services, you agree to the following terms and conditions:

1. General
Sangam AV Hospital provides medical consultation, diagnosis, and treatment services under the supervision of qualified healthcare professionals.
All patients and visitors are expected to respect hospital rules and cooperate with staff for a safe and efficient healthcare experience.

2. OPD Consultation & Follow-Up
Once the OPD consultation fee is paid, follow-up visits on the same consultation slip are free for 5 calendar days, including the day of the first visit.
After this period, a new consultation slip will be required and the standard consultation fee will apply again.
No refunds will be provided for OPD services, regardless of whether the consultation is availed or not.

3. Payment Policy
All charges for consultations, diagnostics, or procedures must be paid in full before or at the time of service.
Payments can be made via cash, card, UPI, or other accepted digital methods.
It is the patient Sangam Hospital
Whoops! There was an error.
ErrorException (E_NOTICE)
ob_end_flush(): failed to send buffer of zlib output compression (0) ErrorException thrown with message "ob_end_flush(): failed to send buffer of zlib output compression (0)" Stacktrace: #3 ErrorException in /home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php:1224 #2 ob_end_flush in /home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php:1224 #1 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php:386 #0 Symfony\Component\HttpFoundation\Response:send in /home/sangamavhospital/public_html/public/index.php:58
3
ErrorException
/vendor/symfony/http-foundation/Response.php1224
2
ob_end_flush
/vendor/symfony/http-foundation/Response.php1224
1
Symfony\Component\HttpFoundation\Response closeOutputBuffers
/vendor/symfony/http-foundation/Response.php386
0
Symfony\Component\HttpFoundation\Response send
/public/index.php58
/home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php
    {
        return \in_array($this->statusCode, [204, 304]);
    }
 
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @final
     */
    public static function closeOutputBuffers(int $targetLevel, bool $flush): void
    {
        $status = ob_get_status(true);
        $level = \count($status);
        $flags = \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? \PHP_OUTPUT_HANDLER_FLUSHABLE : \PHP_OUTPUT_HANDLER_CLEANABLE);
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final
     */
    protected function ensureIEOverSSLCompatibility(Request $request): void
    {
        if (false !== stripos($this->headers->get('Content-Disposition') ?? '', 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT') ?? '', $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
Arguments
  1. "ob_end_flush(): failed to send buffer of zlib output compression (0)"
    
/home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php
    {
        return \in_array($this->statusCode, [204, 304]);
    }
 
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @final
     */
    public static function closeOutputBuffers(int $targetLevel, bool $flush): void
    {
        $status = ob_get_status(true);
        $level = \count($status);
        $flags = \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? \PHP_OUTPUT_HANDLER_FLUSHABLE : \PHP_OUTPUT_HANDLER_CLEANABLE);
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final
     */
    protected function ensureIEOverSSLCompatibility(Request $request): void
    {
        if (false !== stripos($this->headers->get('Content-Disposition') ?? '', 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT') ?? '', $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
/home/sangamavhospital/public_html/vendor/symfony/http-foundation/Response.php
    {
        echo $this->content;
 
        return $this;
    }
 
    /**
     * Sends HTTP headers and content.
     *
     * @return $this
     */
    public function send()
    {
        $this->sendHeaders();
        $this->sendContent();
 
        if (\function_exists('fastcgi_finish_request')) {
            fastcgi_finish_request();
        } elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
            static::closeOutputBuffers(0, true);
        }
 
        return $this;
    }
 
    /**
     * Sets the response content.
     *
     * Valid types are strings, numbers, null, and objects that implement a __toString() method.
     *
     * @param mixed $content Content that can be cast to string
     *
     * @return $this
     *
     * @throws \UnexpectedValueException
     */
    public function setContent($content)
    {
        if (null !== $content && !\is_string($content) && !is_numeric($content) && !\is_callable([$content, '__toString'])) {
            throw new \UnexpectedValueException(sprintf('The Response content must be a string or object implementing __toString(), "%s" given.', \gettype($content)));
Arguments
  1. 0
    
  2. true
    
/home/sangamavhospital/public_html/public/index.php
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"sangamavhospital.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/sangamavhospital/public_html"
REMOTE_ADDR
"216.73.216.58"
REMOTE_PORT
"31416"
SERVER_ADDR
"51.210.156.152"
SERVER_NAME
"sangamavhospital.com"
SERVER_ADMIN
"webmaster@sangamavhospital.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/hospital/terms/condition"
REDIRECT_URL
"/public/hospital/terms/condition"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.2"
SSL_CIPHER
"ECDHE-RSA-AES256-GCM-SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/sangamavhospital/public_html/public/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://sangamavhospital.com/hospital/terms/condition"
SCRIPT_URL
"/hospital/terms/condition"
SCRIPT_NAME
"/public/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1751681414.9253
REQUEST_TIME
1751681414
argv
[]
argc
0
APP_NAME
"sangamavhospital"
APP_ENV
"local"
APP_KEY
"base64:ht03/lhSFXYxwQF9UzdPXp+c6JpWyUUVlp1Qf3ZetA0="
APP_DEBUG
"true"
APP_URL
"http://sangamavhospital.com/"
LOG_CHANNEL
"stack"
SESSION_DOMAIN
""
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"sangamav_hospital"
DB_USERNAME
"sangamav_sangama"
DB_PASSWORD
"iE,[H^~EqnbA"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"10080"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"log"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"tcmeducationonline@gmail.com"
MAIL_PASSWORD
"tcmajai@1331"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_NAME
"SANGAMHOSPITAL"
MAIL_FROM_ADDRESS
"sangamhospital@gmail.com"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
""
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
""
FACEBOOK_CLIENT_ID
""
FACEBOOK_CLIENT_SECRET
""
FACEBOOK_CALLBACK_URL
""
GOOGLE_CLIENT_ID
""
GOOGLE_CLIENT_SECRET
""
GOOGLE_CALLBACK_URL
""
GITLAB_CLIENT_ID
""
GITLAB_CLIENT_SECRET
""
GITLAB_CALLBACK_URL
""
PAYPAL_CLIENT_ID
""
PAYPAL_SECRET
""
PAYPAL_MODE
""
IM_API_KEY
""
IM_AUTH_TOKEN
""
IM_URL
"https:"
STRIPE_KEY
""
STRIPE_SECRET
""
RAZORPAY_KEY
"rzp_live_G7SzhisB9Z8F5C"
RAZORPAY_SECRET
"eiUmywqaqsinfKJalbVcWLIz"
PAYSTACK_PUBLIC_KEY
""
PAYSTACK_SECRET_KEY
""
PAYSTACK_PAYMENT_URL
""
PAYSTACK_MERCHANT_EMAIL
""
PAYTM_ENVIRONMENT
""
PAYTM_MERCHANT_ID
""
PAYTM_MERCHANT_KEY
""
PAYTM_MERCHANT_WEBSITE
""
PAYTM_CHANNEL
""
PAYTM_INDUSTRY_TYPE
""
NOCAPTCHA_SITEKEY
""
NOCAPTCHA_SECRET
""
AMAZON_LOGIN_ID
""
AMAZON_LOGIN_SECRET
""
AMAZON_LOGIN_REDIRECT
""
LINKEDIN_CLIENT_ID
""
LINKEDIN_CLIENT_SECRET
""
LINKEDIN_CALLBACK_URL
""
TWITTER_CLIENT_ID
""
TWITTER_CLIENT_SECRET
""
TWITTER_CALLBACK_URL
""
IS_INSTALLED
"1"
BBB_SECURITY_SALT
"bbl.anumaandreams.com"
BBB_SERVER_BASE_URL
"https://bbl.anumaandreams.com/bigbluebutton/"
Key Value
APP_NAME
"sangamavhospital"
APP_ENV
"local"
APP_KEY
"base64:ht03/lhSFXYxwQF9UzdPXp+c6JpWyUUVlp1Qf3ZetA0="
APP_DEBUG
"true"
APP_URL
"http://sangamavhospital.com/"
LOG_CHANNEL
"stack"
SESSION_DOMAIN
""
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"sangamav_hospital"
DB_USERNAME
"sangamav_sangama"
DB_PASSWORD
"iE,[H^~EqnbA"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"10080"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"log"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"tcmeducationonline@gmail.com"
MAIL_PASSWORD
"tcmajai@1331"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_NAME
"SANGAMHOSPITAL"
MAIL_FROM_ADDRESS
"sangamhospital@gmail.com"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
""
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
""
FACEBOOK_CLIENT_ID
""
FACEBOOK_CLIENT_SECRET
""
FACEBOOK_CALLBACK_URL
""
GOOGLE_CLIENT_ID
""
GOOGLE_CLIENT_SECRET
""
GOOGLE_CALLBACK_URL
""
GITLAB_CLIENT_ID
""
GITLAB_CLIENT_SECRET
""
GITLAB_CALLBACK_URL
""
PAYPAL_CLIENT_ID
""
PAYPAL_SECRET
""
PAYPAL_MODE
""
IM_API_KEY
""
IM_AUTH_TOKEN
""
IM_URL
"https:"
STRIPE_KEY
""
STRIPE_SECRET
""
RAZORPAY_KEY
"rzp_live_G7SzhisB9Z8F5C"
RAZORPAY_SECRET
"eiUmywqaqsinfKJalbVcWLIz"
PAYSTACK_PUBLIC_KEY
""
PAYSTACK_SECRET_KEY
""
PAYSTACK_PAYMENT_URL
""
PAYSTACK_MERCHANT_EMAIL
""
PAYTM_ENVIRONMENT
""
PAYTM_MERCHANT_ID
""
PAYTM_MERCHANT_KEY
""
PAYTM_MERCHANT_WEBSITE
""
PAYTM_CHANNEL
""
PAYTM_INDUSTRY_TYPE
""
NOCAPTCHA_SITEKEY
""
NOCAPTCHA_SECRET
""
AMAZON_LOGIN_ID
""
AMAZON_LOGIN_SECRET
""
AMAZON_LOGIN_REDIRECT
""
LINKEDIN_CLIENT_ID
""
LINKEDIN_CLIENT_SECRET
""
LINKEDIN_CALLBACK_URL
""
TWITTER_CLIENT_ID
""
TWITTER_CLIENT_SECRET
""
TWITTER_CALLBACK_URL
""
IS_INSTALLED
"1"
BBB_SECURITY_SALT
"bbl.anumaandreams.com"
BBB_SERVER_BASE_URL
"https://bbl.anumaandreams.com/bigbluebutton/"
0. Whoops\Handler\PrettyPageHandler