Browse Source

Updates - fixes

Samson Mutunga 2 years ago
parent
commit
ff586066d1

+ 10 - 0
app/Http/Controllers/AppController.php

@@ -66,6 +66,11 @@ class AppController extends Controller
       $record->zip = $request->get('zip');
       $record->zip = $request->get('zip');
 
 
       $record->save();
       $record->save();
+      $this->sendWebsiteEmailNotification([
+        'template' => 'find-a-clinic',
+        'subject' => 'Find a clinic request',
+        'data' => $record
+      ]);
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
 
 
@@ -93,6 +98,11 @@ class AppController extends Controller
       $record->message = $request->get('message');
       $record->message = $request->get('message');
 
 
       $record->save();
       $record->save();
+      $this->sendWebsiteEmailNotification([
+        'template' => 'contact',
+        'subject' => $record->subject,
+        'data' => $record
+      ]);
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
 }
 }

+ 11 - 0
app/Http/Controllers/Controller.php

@@ -6,8 +6,19 @@ use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
 use Illuminate\Foundation\Bus\DispatchesJobs;
 use Illuminate\Foundation\Bus\DispatchesJobs;
 use Illuminate\Foundation\Validation\ValidatesRequests;
 use Illuminate\Foundation\Validation\ValidatesRequests;
 use Illuminate\Routing\Controller as BaseController;
 use Illuminate\Routing\Controller as BaseController;
+use Illuminate\Support\Facades\Mail;
+use App\Mail\NotifyEmail;
 
 
 class Controller extends BaseController
 class Controller extends BaseController
 {
 {
     use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
     use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
+
+    public function sendWebsiteEmailNotification($details){   
+        $toUsers = [
+            ['email' => config('app.supportEmailAddress'), 'name' => 'Hemband Support'],
+            ['email' => config('app.adminEmailAddress'), 'name' => 'Hemband Admin'],
+        ];    
+        Mail::to($toUsers)->send(new NotifyEmail($details));
+        return true;
+    }
 }
 }

+ 22 - 0
app/Http/Controllers/PhysiciansController.php

@@ -95,6 +95,13 @@ class PhysiciansController extends Controller
       $record->notes = $request->get('notes');
       $record->notes = $request->get('notes');
 
 
       $record->save();
       $record->save();
+
+      $this->sendWebsiteEmailNotification([
+        'template' => 'training-request',
+        'subject' => 'Hemband Training Request',
+        'data' => $record
+      ]);
+
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
 
 
@@ -123,6 +130,11 @@ class PhysiciansController extends Controller
       $record->message = $request->get('message');
       $record->message = $request->get('message');
 
 
       $record->save();
       $record->save();
+      $this->sendWebsiteEmailNotification([
+        'template' => 'physician-contact',
+        'subject' => 'Hemband Physician Contact Form',
+        'data' => $record
+      ]);
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
 
 
@@ -152,6 +164,11 @@ class PhysiciansController extends Controller
       $record->comment = $request->get('comment');
       $record->comment = $request->get('comment');
 
 
       $record->save();
       $record->save();
+      $this->sendWebsiteEmailNotification([
+        'template' => 'physician-directory-listing-request',
+        'subject' => 'Hemband Physician Directory Listing Request Form',
+        'data' => $record
+      ]);
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
     public function submitOrderProductsMarketing(Request $request) {
     public function submitOrderProductsMarketing(Request $request) {
@@ -182,6 +199,11 @@ class PhysiciansController extends Controller
       $record->comment = $request->get('comment');
       $record->comment = $request->get('comment');
 
 
       $record->save();
       $record->save();
+      $this->sendWebsiteEmailNotification([
+        'template' => 'physician-marketing-materials-request',
+        'subject' => 'Hemband Physician Marketing Materials Request Form',
+        'data' => $record
+      ]);
       return redirect()->back()->with('success', 'Your request has been submitted!');
       return redirect()->back()->with('success', 'Your request has been submitted!');
     }
     }
 }
 }

+ 36 - 0
app/Mail/NotifyEmail.php

@@ -0,0 +1,36 @@
+<?php
+  
+namespace App\Mail;
+  
+use Illuminate\Bus\Queueable;
+use Illuminate\Contracts\Queue\ShouldQueue;
+use Illuminate\Mail\Mailable;
+use Illuminate\Queue\SerializesModels;
+  
+class NotifyEmail extends Mailable
+{
+    use Queueable, SerializesModels;
+  
+    public $details;
+  
+    /**
+     * Create a new message instance.
+     *
+     * @return void
+     */
+    public function __construct($details)
+    {
+        $this->details = $details;
+    }
+  
+    /**
+     * Build the message.
+     *
+     * @return $this
+     */
+    public function build()
+    {
+        return $this->subject($this->details['subject'])
+                    ->view('emails.'.$this->details['template']);
+    }
+}

+ 3 - 0
config/app.php

@@ -23,6 +23,9 @@ return [
 
 
     'forPhysicianGeneralQuestionEmailAddress' => env('FOR_PHYSICIAN_GENERAL_QUESTION_EMAIL_ADDRESS', ''),
     'forPhysicianGeneralQuestionEmailAddress' => env('FOR_PHYSICIAN_GENERAL_QUESTION_EMAIL_ADDRESS', ''),
     'forPhysicianGeneralQuestionPhoneNumber' => env('FOR_PHYSICIAN_GENERAL_QUESTION_PHONE_NUMBER', ''),
     'forPhysicianGeneralQuestionPhoneNumber' => env('FOR_PHYSICIAN_GENERAL_QUESTION_PHONE_NUMBER', ''),
+    'contactPhoneNumber' => env('CONTACT_PHONE_NUMBER'),
+    'supportEmailAddress' => env('SUPPORT_EMAIL_ADDRESS'),
+    'adminEmailAddress' => env('ADMIN_EMAIL_ADDRESS'),
 
 
     /*
     /*
     |--------------------------------------------------------------------------
     |--------------------------------------------------------------------------

File diff suppressed because it is too large
+ 133 - 133
public/ligator-order-form.pdf


+ 4 - 2
resources/views/app/compare.blade.php

@@ -26,6 +26,7 @@
       <h5 class="subtitle">What are my medical options for treating hemorrhoids?</h5>
       <h5 class="subtitle">What are my medical options for treating hemorrhoids?</h5>
     </div>
     </div>
   </div>
   </div>
+  {{--
   <div class="mt-4 col-lg-12">
   <div class="mt-4 col-lg-12">
     <div class="table-responsive">
     <div class="table-responsive">
       <table class="table table-bordered">
       <table class="table table-bordered">
@@ -164,8 +165,9 @@
       <span>Source: Medscape website</span>
       <span>Source: Medscape website</span>
     </div> -->
     </div> -->
   </div>
   </div>
+  --}}
 </div>
 </div>
-
+{{--
 <div class="container">
 <div class="container">
   <div class="row">
   <div class="row">
     <div class="col-lg-12">
     <div class="col-lg-12">
@@ -173,7 +175,7 @@
     </div>
     </div>
   </div>
   </div>
 </div>
 </div>
-
+--}}
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-6 mb-lg-5 mb-4" id="hemorrhoid-banding">
     <div class="col-lg-6 mb-lg-5 mb-4" id="hemorrhoid-banding">

+ 1 - 1
resources/views/app/index.blade.php

@@ -127,7 +127,7 @@
     <div class="text-center mb-sm-0 mb-4">
     <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-1.svg')}}" height="40">
       <img src="{{asset('img/fp/fp-1.svg')}}" height="40">
       <p class="mt-3"><b>Fast & Safe</b></p>
       <p class="mt-3"><b>Fast & Safe</b></p>
-      <p class="px-4">Banding takes less than a minute and is the standard of care, with a greater than 95% success rate.</p>
+      <p class="px-4">Banding takes less than a minute and is the standard of care, with a greater success rate.</p>
     </div>
     </div>
     <div class="text-center mb-sm-0 mb-4">
     <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-3.svg')}}" height="40">
       <img src="{{asset('img/fp/fp-3.svg')}}" height="40">

+ 9 - 3
resources/views/app/physicians/practice-support/reimbursement.blade.php

@@ -17,9 +17,12 @@
   <div class="container py-lg-4">
   <div class="container py-lg-4">
     <div class="row justify-content-center">
     <div class="row justify-content-center">
       <div class="col-lg-5 text-start">
       <div class="col-lg-5 text-start">
-        <h5 class="subtitle mb-4 text-pry">Hemorrhoid Banding CPT Code: A Quick Guide</h5>
-        <p>If you’re planning to add hemorrhoid banding as a service offered by your medical facility, then you’re going to need to learn the appropriate codes related to this procedure. Knowing the correct Current Procedural Terminology (CPT) codes can reduce confusion and streamline your office’s billing practices.</p>
-        <p>To get started, review the following hemorrhoid banding CPT code guide. It will walk you and your office staff through the ins and outs of coding and reimbursement for treatment with a hemorrhoid banding ligator.</p>
+        <h5 class="subtitle mb-4 text-pry">Hemorrhoid Banding CPT Code</h5>
+        <p>Hemorrhoid banding is typically billed using CPT code 46221.</p>
+
+<p>This service should be reported and billed on each service, regardless of how many hemorrhoid bands are used.</p>
+
+For questions regarding billing, please contact our support team at: <a href="tel:{{config('app.contactPhoneNumber')}}">{{config('app.contactPhoneNumber')}}</a> or email <a href="mailto:{{ config('app.supportEmailAddress') }}">{{ config('app.supportEmailAddress') }}</a></p>
       </div>
       </div>
       <div class="col-lg-6 offset-lg-1">
       <div class="col-lg-6 offset-lg-1">
         <img src="{{asset('img/reimburse.jpg')}}" class="w-100" alt="">
         <img src="{{asset('img/reimburse.jpg')}}" class="w-100" alt="">
@@ -27,6 +30,8 @@
     </div>
     </div>
   </div>
   </div>
 </div>
 </div>
+
+{{--
 <div class="bg-light">
 <div class="bg-light">
 <div class="container py-5">
 <div class="container py-5">
     <div class="row text-justify">
     <div class="row text-justify">
@@ -76,5 +81,6 @@
     </div>
     </div>
   </div>
   </div>
 </div>
 </div>
+--}}
 
 
 @endsection
 @endsection

+ 181 - 65
resources/views/app/privacy.blade.php

@@ -23,73 +23,189 @@
   <div class="row justify-content-center">
   <div class="row justify-content-center">
     <div class="col-lg-12">
     <div class="col-lg-12">
       <div class="container py-5">
       <div class="container py-5">
-        <h3 class="font-weight-light">NOTICE OF PRIVACY PRACTICES</h3>
-        <p class="font-weight-lighter mb-1 font-italic">THIS NOTICE DESCRIBES HOW MEDICAL INFORMATION ABOUT YOU MAY BE USED AND DISCLOSED AND HOW YOU CAN GET ACCESS TO THIS INFORMATION.</p>
-        <p class="font-weight-lighter font-italic">PLEASE REVIEW IT CAREFULLY.</p>
-        <p class="font-weight-light text-secondary">MDE Medical LLC deemed as a covered entity under the federal Health Insurance Portability and Accountability Act of 1996 (“HIPAA”), will be referred to in this Notice of Privacy Practices (“Notice”) as “CVR.” This Notice is created by CVR to describe the ways in which CVR may use and disclose your medical information (called “Protected Health Information” or “PHI”) and to notify you of your rights with respect to PHI in the possession of CVR. Pursuant to the Regulations, and as outlined in this Notice, <strong class="text-dark">CVR is permitted to use or disclose PHI to other parties</strong>. Below are categories describing these uses and disclosures, along with some examples to help you better understand each category.</p>
-        <p class="text-secondary"><strong>Uses and Disclosures for Treatment, Payment and Health Care Operations</strong> </p>
-
-        <p class="font-weight-light text-secondary">CVR may use or disclose your PHI for the purposes of treatment, payment and health care operations, described in more detail below, <strong class="text-dark">without obtaining written authorization from you:</strong> </p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">For Treatment:</strong> CVR may use and disclose PHI in the course of providing, coordinating, or managing your medical treatment, including the disclosure of PHI for treatment activities of other health care providers. These uses and disclosures may take place between physicians, nurses, technicians, and other health care professionals who provide or are otherwise involved in your health care. For example, your primary care physician may share your PHI with a specialist physician whom he/she consults regarding your condition, or to their staff who are assisting in the provision or coordination of your care.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">For Payment:</strong> CVR may use and disclose PHI in order to bill and collect payment for health care services provided to you. For example, CVR may need to give PHI to your health plan in order to be reimbursed for the services provided to you. CVR may also disclose PHI to their business associates, such as billing companies, claims processing companies, and others that assist in processing health claims. CVR may also disclose PHI to other health care providers and health plans for the payment activities of such providers or health plans.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">For Health Care Operations:</strong> CVR may use and disclose PHI as part of our health care operations, including: quality assessment and improvement, or evaluating the treatment and services you receive and the performance of its staff in caring for you. Other activities include provider training, compliance and risk management activities, planning and development, and management and administration. CVR may disclose PHI to doctors, nurses, technicians, attorneys, consultants, accountants, and others for review purposes. These disclosures help ensure that CVR is complying with all applicable laws, and are continuing to provide health care to patients at a high level of quality. CVR may also disclose PHI to other health care providers and health plans for certain of their operations, including their quality assessment and improvement activities, credentialing and peer review or compliance activities.</p>
-
-        <p class="text-secondary"><strong>Sharing PHI Among CVR And Their Medical Staff</strong></p>
-
-        <p class="font-weight-light text-secondary">CVR locations work together with the physicians and other health care providers on staff to provide medical services to you when you are a patient at a CVR location. CVR and the members of its staff will share PHI with each other as needed to perform their joint treatment, payment and health care operations activities.</p>
-
-        <p class="text-secondary"><strong>Other Uses and Disclosures for Which Authorization are Not Require</strong></p>
-
-        <p class="font-weight-light text-secondary">In addition to using or disclosing PHI for treatment, payment and health care operations, CVR may use and disclose PHI without your written authorization under the following circumstances:</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">As Required by Law and Law Enforcement:</strong> CVR may use or disclose PHI when required by law. CVR also may disclose PHI when ordered to in rare situations such as a judicial or administrative proceeding, in response to subpoenas or discovery requests, to identify or locate a suspect, fugitive, material witness, or missing person, about criminal conduct, to report a crime, its location or victims, or the identity, description or location of a person who committed a crime, or for other law enforcement purposes.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">For Public Health Activities and Public Health Risks:</strong> CVR may disclose PHI to government officials in charge of collecting healthcare information, such as reactions to medications or product defects, or to notify persons who may have been exposed to a disease or may be at risk of contracting or spreading a disease or condition.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">For Health Oversight Activities:</strong> CVR may disclose PHI to the government for oversight activities authorized by law, such as audits, investigations, inspections, licensure or disciplinary actions, and other activities necessary for monitoring health care or compliance with government programs or civil rights laws.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">Research:</strong> Under certain circumstances, CVR may use and disclose PHI for medical research purposes.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">To Avoid a Serious Threat to Health or Safety:</strong> CVR may use and disclose PHI to law enforcement or other appropriate persons, to prevent or lessen a serious threat to the health/safety of a person or the public.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">Specialized Government Functions:</strong> CVR may use and disclose PHI of military personnel and veterans under certain circumstances, and may also disclose PHI to authorized federal officials for intelligence, counterintelligence, and other national security activities.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">Appointment Reminders, Health-related Benefits and Services, Limited Marketing Activities:</strong> CVR may use and disclose PHI to remind you of an appointment, or to inform you of treatment alternatives or other health-related benefits and services that may be of interest to you, such as disease management programs. CVR may use and disclose your PHI to encourage you to purchase or use a product or service through face-to-face or written communication, or by giving you a promotional gift of nominal value.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">Disclosures for HIPAA Compliance Investigations:</strong> CVR may disclose your PHI when required to do so in connection with your rights of access to your PHI and to account for certain disclosures of your PHI. CVR must disclose your PHI to the U.S. Department of HHS when requested by the Secretary in order to investigate compliance with privacy regulations issued under HIPAA.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">Regulatory Requirements:</strong> CVR is required by law to maintain the privacy of your PHI, to provide individuals with notice of their legal privacy practice duties with respect to PHI, and to abide by the terms described in this Notice. CVR reserves the right to change the terms of this Notice or privacy policies, and to make changes applicable to all PHI it maintains. CVR will acknowledge Notice changes and make available a revised copy of the Notice upon the patient’s request. A copy of the Notice will be posted in registration and waiting areas.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You Have The Following Rights Regarding Your PHI: You may request that CVR restrict the use and disclosure of your PHI.</strong> CVR is not required to agree to any restriction requests, but will be bound to restrictions to which we agree, except in emergency situations. <strong class="text-dark">You have the right to request that communications of PHI to you from CVR be made by alternative means or locations.</strong> You may request that CVR can communicate with you by cellphone or via e-mail or to an alternate address. CVR can accommodate your request through completion of the CVR Communication Preferences and Message Agreement Form.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to inspect and copy your PHI in the possession of CVR, if you make a request in writing to the CVR Medical Records Director.</strong> Within thirty (30) days of receiving your request (unless extended by an additional thirty (30) days), CVR will inform you of the extent to which your request has or has not been granted. CVR may provide you a summary of the PHI you request if you agree in advance to such a summary. CVR may impose a reasonable fee determined by state law to cover copying, postage, and related costs for copies or summaries of your PHI. If CVR denies access to your PHI, it will explain the basis for denial. If CVR does not maintain the PHI you request, and it knows where that PHI is located, we will tell you how to redirect your request.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to receive notifications whenever a breach of your unsecured PHI occurs.</strong> CVR will provide notification through a written communication.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to restrict disclosure of information to your health plan(s) for services paid directly by you.</strong> You have the right to restrict the release of PHI for services for which you have paid for directly. Your written notification is required.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to designate personal representatives.</strong> You can designate specific individuals – other caregivers or personal representatives—with whom CVR may disclose your PHI. Please complete CVR’s Patient Privacy and HIPPA Protection Form.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to request that CVR amend, correct or supplement your PHI.</strong> Your request must be made in writing to the CVR Medical Records Director and it must explain why you are requesting an amendment to your PHI. Within sixty (60) days of receiving your request (unless extended by an additional thirty (30) days), CVR will inform you of the extent to which your request has or has not been granted. CVR generally can deny your request if your request relates to PHI: (i) not created by the entity; (ii) that is not part of the records the entity maintains; (iii) that is not subject to being inspected by you; or (iv) that is accurate and complete. If your request is denied, CVR will give you a written denial that explains the reason for the denial and your rights to: (i) file a statement disagreeing with the denial; (ii) if you do not file a statement of disagreement, submit a request that future disclosures of the relevant PHI be made with a copy of your request and the entity’s denial attached; and (iii) complain about the denial.
-        </p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to request/receive a list of PHI disclosures CVR has made during the six (6) years prior to your request (but not before April 14, 2003).</strong> The list will not include disclosures (i) for which you have provided a written authorization; (ii) for payment; (iii) made to you; (iv) to persons involved in your health care; (v) for national security or intelligence purposes; (vi) to law enforcement officials; or (vii) of a limited data set. You should submit any such request to the Privacy Officer, and within sixty (60) days of receiving your request (unless extended by an additional thirty (30) days), CVR will respond to you regarding the status of your request. CVR will provide you a list at no charge, but if you make more than one request in a year you will be charged a fee of $25.00 for each additional request.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to receive a paper copy of this notice upon request, even if you have agreed to receive this notice electronically.</strong> You can review and print a copy of this notice at any CVR Web site via https://mbcoaches.wpengine.com or you may request a paper copy of this notice by contacting the Privacy Officer as described below.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">You may complain to CVR</strong> if you believe your privacy rights with respect to your PHI have been violated by contacting the Privacy Officer and submitting a written complaint, or contact the Endothera Hotline at <a href="tel:(800) 990-5491" target="_blank" class="text-pry">(800) 990-5491</a>. CVR will not retaliate against you for filing a complaint regarding their privacy practices. You also have the right to file a complaint with the Secretary of the Department of Health and Human Services.</p>
-
-        <p class="font-weight-light text-secondary"><strong class="text-dark">If you have any questions about this notice, please contact the CVR Privacy Officer by phone at (202) 921-4287, by email at <a href="mailto:support@endothera.com" target="_blank" class="text-pry">support@endothera.com</a>, or by mail at 303 Twin Dolphin Dr Fl 6th, Redwood City, California, 94065-1497.</strong></p>
-
-        <p class="font-weight-light text-secondary">NOTICE IS EFFECTIVE: 5/1/2020</p>
-      </div>
-
+        <h4>Privacy Policy</h4>
+        <p>Last updated: December 07, 2022</p>
+        <p>This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.</p>
+        <p>We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. </p>
+        <h4>Interpretation and Definitions</h4>
+        <h5>Interpretation</h5>
+        <p>The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.</p>
+        <h5>Definitions</h5>
+        <p>For the purposes of this Privacy Policy:</p>
+        <ul>
+          <li>
+            <p><strong>Account</strong> means a unique account created for You to access our Service or parts of our Service.</p>
+          </li>
+          <li>
+            <p><strong>Company</strong> (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to MDE Medical LLC, 258 Chapman Road, Suite 101A, Newark, DE 19702.</p>
+          </li>
+          <li>
+            <p><strong>Cookies</strong> are small files that are placed on Your computer, mobile device or any other device by a website, containing the details of Your browsing history on that website among its many uses.</p>
+          </li>
+          <li>
+            <p><strong>Country</strong> refers to: Delaware, United States</p>
+          </li>
+          <li>
+            <p><strong>Device</strong> means any device that can access the Service such as a computer, a cellphone or a digital tablet.</p>
+          </li>
+          <li>
+            <p><strong>Personal Data</strong> is any information that relates to an identified or identifiable individual.</p>
+          </li>
+          <li>
+            <p><strong>Service</strong> refers to the Website.</p>
+          </li>
+          <li>
+            <p><strong>Service Provider</strong> means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used.</p>
+          </li>
+          <li>
+            <p><strong>Usage Data</strong> refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit).</p>
+          </li>
+          <li>
+            <p><strong>Website</strong> refers to Snyder HemBand Website, accessible from <a href="https://www.hemband.com" rel="external nofollow noopener" target="_blank">https://www.HemBand.com</a></p>
+          </li>
+          <li>
+            <p><strong>You</strong> means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable.</p>
+          </li>
+        </ul>
+        <h4>Collecting and Using Your Personal Data</h4>
+        <h5>Types of Data Collected</h5>
+        <h6>Personal Data</h6>
+        <p>While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to:</p>
+        <ul>
+          <li>
+            <p>Email address</p>
+          </li>
+          <li>
+            <p>First name and last name</p>
+          </li>
+          <li>
+            <p>Phone number</p>
+          </li>
+          <li>
+            <p>Address, State, Province, ZIP/Postal code, City</p>
+          </li>
+          <li>
+            <p>Usage Data</p>
+          </li>
+        </ul>
+        <h6>Usage Data</h6>
+        <p>Usage Data is collected automatically when using the Service.</p>
+        <p>Usage Data may include information such as Your Device's Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data.</p>
+        <p>When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data.</p>
+        <p>We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device.</p>
+        <h6>Tracking Technologies and Cookies</h6>
+        <p>We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include:</p>
+        <ul>
+          <li><strong>Cookies or Browser Cookies.</strong> A cookie is a small file placed on Your Device. You can instruct Your browser to refuse all Cookies or to indicate when a Cookie is being sent. However, if You do not accept Cookies, You may not be able to use some parts of our Service. Unless you have adjusted Your browser setting so that it will refuse Cookies, our Service may use Cookies.</li>
+          <li><strong>Web Beacons.</strong> Certain sections of our Service and our emails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of a certain section and verifying system and server integrity).</li>
+        </ul>
+        <p>Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser. You can learn more about cookies on <a href="https://www.termsfeed.com/blog/cookies/#What_Are_Cookies" target="_blank">TermsFeed website</a> article.</p>
+        <p>We use both Session and Persistent Cookies for the purposes set out below:</p>
+        <ul>
+          <li>
+            <p><strong>Necessary / Essential Cookies</strong></p>
+            <p>Type: Session Cookies</p>
+            <p>Administered by: Us</p>
+            <p>Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services.</p>
+          </li>
+          <li>
+            <p><strong>Cookies Policy / Notice Acceptance Cookies</strong></p>
+            <p>Type: Persistent Cookies</p>
+            <p>Administered by: Us</p>
+            <p>Purpose: These Cookies identify if users have accepted the use of cookies on the Website.</p>
+          </li>
+          <li>
+            <p><strong>Functionality Cookies</strong></p>
+            <p>Type: Persistent Cookies</p>
+            <p>Administered by: Us</p>
+            <p>Purpose: These Cookies allow us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website.</p>
+          </li>
+        </ul>
+        <p>For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of our Privacy Policy.</p>
+        <h5>Use of Your Personal Data</h5>
+        <p>The Company may use Personal Data for the following purposes:</p>
+        <ul>
+          <li>
+            <p><strong>To provide and maintain our Service</strong>, including to monitor the usage of our Service.</p>
+          </li>
+          <li>
+            <p><strong>To manage Your Account:</strong> to manage Your registration as a user of the Service. The Personal Data You provide can give You access to different functionalities of the Service that are available to You as a registered user.</p>
+          </li>
+          <li>
+            <p><strong>For the performance of a contract:</strong> the development, compliance and undertaking of the purchase contract for the products, items or services You have purchased or of any other contract with Us through the Service.</p>
+          </li>
+          <li>
+            <p><strong>To contact You:</strong> To contact You by email, telephone calls, SMS, or other equivalent forms of electronic communication, such as a mobile application's push notifications regarding updates or informative communications related to the functionalities, products or contracted services, including the security updates, when necessary or reasonable for their implementation.</p>
+          </li>
+          <li>
+            <p><strong>To provide You</strong> with news, special offers and general information about other goods, services and events which we offer that are similar to those that you have already purchased or enquired about unless You have opted not to receive such information.</p>
+          </li>
+          <li>
+            <p><strong>To manage Your requests:</strong> To attend and manage Your requests to Us.</p>
+          </li>
+          <li>
+            <p><strong>For business transfers:</strong> We may use Your information to evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which Personal Data held by Us about our Service users is among the assets transferred.</p>
+          </li>
+          <li>
+            <p><strong>For other purposes</strong>: We may use Your information for other purposes, such as data analysis, identifying usage trends, determining the effectiveness of our promotional campaigns and to evaluate and improve our Service, products, services, marketing and your experience.</p>
+          </li>
+        </ul>
+        <p>We may share Your personal information in the following situations:</p>
+        <ul>
+          <li><strong>With Service Providers:</strong> We may share Your personal information with Service Providers to monitor and analyze the use of our Service, to contact You.</li>
+          <li><strong>For business transfers:</strong> We may share or transfer Your personal information in connection with, or during negotiations of, any merger, sale of Company assets, financing, or acquisition of all or a portion of Our business to another company.</li>
+          <li><strong>With Affiliates:</strong> We may share Your information with Our affiliates, in which case we will require those affiliates to honor this Privacy Policy. Affiliates include Our parent company and any other subsidiaries, joint venture partners or other companies that We control or that are under common control with Us.</li>
+          <li><strong>With business partners:</strong> We may share Your information with Our business partners to offer You certain products, services or promotions.</li>
+          <li><strong>With other users:</strong> when You share personal information or otherwise interact in the public areas with other users, such information may be viewed by all users and may be publicly distributed outside.</li>
+          <li><strong>With Your consent</strong>: We may disclose Your personal information for any other purpose with Your consent.</li>
+        </ul>
+        <h5>Retention of Your Personal Data</h5>
+        <p>The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies.</p>
+        <p>The Company will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period of time, except when this data is used to strengthen the security or to improve the functionality of Our Service, or We are legally obligated to retain this data for longer time periods.</p>
+        <h5>Transfer of Your Personal Data</h5>
+        <p>Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from Your jurisdiction.</p>
+        <p>Your consent to this Privacy Policy followed by Your submission of such information represents Your agreement to that transfer.</p>
+        <p>The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information.</p>
+        <h5>Delete Your Personal Data</h5>
+        <p>You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You.</p>
+        <p>Our Service may give You the ability to delete certain information about You from within the Service.</p>
+        <p>You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any personal information that You have provided to Us.</p>
+        <p>Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so.</p>
+        <h5>Disclosure of Your Personal Data</h5>
+        <h6>Business Transactions</h6>
+        <p>If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy.</p>
+        <h6>Law enforcement</h6>
+        <p>Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency).</p>
+        <h6>Other legal requirements</h6>
+        <p>The Company may disclose Your Personal Data in the good faith belief that such action is necessary to:</p>
+        <ul>
+          <li>Comply with a legal obligation</li>
+          <li>Protect and defend the rights or property of the Company</li>
+          <li>Prevent or investigate possible wrongdoing in connection with the Service</li>
+          <li>Protect the personal safety of Users of the Service or the public</li>
+          <li>Protect against legal liability</li>
+        </ul>
+        <h5>Security of Your Personal Data</h5>
+        <p>The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security.</p>
+        <h4>Children's Privacy</h4>
+        <p>Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers.</p>
+        <p>If We need to rely on consent as a legal basis for processing Your information and Your country requires consent from a parent, We may require Your parent's consent before We collect and use that information.</p>
+        <h4>Links to Other Websites</h4>
+        <p>Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party's site. We strongly advise You to review the Privacy Policy of every site You visit.</p>
+        <p>We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>
+        <h4>Changes to this Privacy Policy</h4>
+        <p>We may update Our Privacy Policy from time to time. We will notify You of any changes by posting the new Privacy Policy on this page.</p>
+        <p>We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy.</p>
+        <p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>
+        <h4>Contact Us</h4>
+        <p>If you have any questions about this Privacy Policy, You can contact us:</p>
+        <ul>
+          <li>By email: mailto:support@hemband.com</li>
+        </ul>
       </div>
       </div>
     </div>
     </div>
   </div>
   </div>
 </div>
 </div>
+</div>
 
 
-@endsection
+@endsection

File diff suppressed because it is too large
+ 24 - 41
resources/views/app/terms.blade.php


+ 18 - 0
resources/views/emails/contact.blade.php

@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+    <div><b>Subject: </b>{{ $data->subject }}</div>
+    <div><b>Message: </b>{{ $data->message }}</div>
+</body>
+</html>

+ 16 - 0
resources/views/emails/find-a-clinic.blade.php

@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+</body>
+</html>

+ 19 - 0
resources/views/emails/physician-contact.blade.php

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>Name Prefix: </b>{{ $data->name_prefix }}</div>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Practice Name: </b>{{ $data->practice_name }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+    <div><b>Message: </b>{{ $data->message }}</div>
+</body>
+</html>

+ 19 - 0
resources/views/emails/physician-directory-listing-request.blade.php

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Title: </b>{{ $data->title }}</div>
+    <div><b>Practice Name: </b>{{ $data->practice_name }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+    <div><b>Comment: </b>{{ $data->comment }}</div>
+</body>
+</html>

+ 20 - 0
resources/views/emails/physician-marketing-materials-request.blade.php

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Title: </b>{{ $data->title }}</div>
+    <div><b>Practice Name: </b>{{ $data->practice_name }}</div>
+    <div><b>Practice Address: </b>{{ $data->practice_address }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+    <div><b>Comment: </b>{{ $data->comment }}</div>
+</body>
+</html>

+ 21 - 0
resources/views/emails/training-request.blade.php

@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>{{ $details['subject'] }}</title>
+</head>
+<body>
+    <?php
+        $data = $details['data'];
+    ?>
+    <div><b>First Name: </b>{{ $data->name_first }}</div>
+    <div><b>Last Name: </b>{{ $data->name_last }}</div>
+    <div><b>Practice Name: </b>{{ $data->practice_name }}</div>
+    <div><b>Email: </b>{{ $data->email }}</div>
+    <div><b>Phone: </b>{{ $data->phone }}</div>
+    <div><b>Zip: </b>{{ $data->zip }}</div>
+    <div><b>Training Type: </b>{{ $data->training_type }}</div>
+    <div><b>Training Type Other: </b>{{ $data->training_type_other }}</div>
+    <div><b>Training Format: </b>{{ $data->training_format }}</div>
+    <div><b>Notes: </b>{{ $data->notes }}</div>
+</body>
+</html>

+ 1 - 1
resources/views/layouts/app.blade.php

@@ -122,7 +122,7 @@
               <div class="d-sm-flex">
               <div class="d-sm-flex">
                 <div class="mt-sm-0 mt-2">
                 <div class="mt-sm-0 mt-2">
                   <a href="{{route('privacy')}}" class="ms-sm-4 text-white opacity-75" style="font-size:15px">Privacy policy</a>
                   <a href="{{route('privacy')}}" class="ms-sm-4 text-white opacity-75" style="font-size:15px">Privacy policy</a>
-                  <a href="{{route('terms')}}" class="ms-4 text-white opacity-75" style="font-size:15px">Terms and conditions</a>
+                  <a href="{{route('terms')}}" class="ms-4 text-white opacity-75" style="font-size:15px">Terms and conditions of sale</a>
                 </div>
                 </div>
               </div>
               </div>
             </div>
             </div>

+ 1 - 1
resources/views/layouts/base.blade.php

@@ -42,7 +42,7 @@
               <div class="text-md-end">
               <div class="text-md-end">
                 @yield('context-switch-link')
                 @yield('context-switch-link')
                 <span class="mx-3">|</span>
                 <span class="mx-3">|</span>
-                <a class="text-pry" style="font-size: 14px;" href="tel:(800) 290-9092">(800) 290-9092</a>
+                <a class="text-pry" style="font-size: 14px;" href="tel:{{config('app.forPatientGeneralQuestionPhoneNumber')}}">{{config('app.forPatientGeneralQuestionPhoneNumber')}}</a>
               </div>
               </div>
             </div>
             </div>
         </div>
         </div>

Some files were not shown because too many files changed in this diff