瀏覽代碼

Merge branch 'master' of https://rav.triplestart.com/Petermuturi/snyder

JKR 2 年之前
父節點
當前提交
0325645242

+ 4 - 2
app/Http/Controllers/AppController.php

@@ -67,8 +67,9 @@ class AppController extends Controller
         'name_first' => 'required|string',
         'name_last' => 'required|string',
         'email' => 'required|email',
-        'phone' => 'string',
-        'subject' => 'string',
+        'phone' => '',
+        'zip' => '',
+        'subject' => '',
         'message' => 'required|string'
       ]);
       
@@ -79,6 +80,7 @@ class AppController extends Controller
       $record->name_last = $request->get('name_last');
       $record->email = $request->get('email');
       $record->phone = $request->get('phone');
+      $record->zip = $request->get('zip');
       $record->subject = $request->get('subject');
       $record->message = $request->get('message');
 

+ 40 - 2
app/Http/Controllers/PhysiciansController.php

@@ -2,16 +2,25 @@
 
 namespace App\Http\Controllers;
 
+use App\Http\Traits\StringGeneratorTrait;
+use Ramsey\Uuid\Uuid;
+
 use Illuminate\Http\Request;
 
+use App\Models\TrainingRequest;
+
 class PhysiciansController extends Controller
 {
- 
+
+  use StringGeneratorTrait;
 
     public function index(Request $request) {
       return view('app.physicians.index');
     }
 
+    public function instructionsForUse(Request $request){
+      return view('app.physicians.instructions-for-use');
+    }
     public function practiceSupport(Request $request){
       return view('app.physicians.practice-support');
     }
@@ -30,5 +39,34 @@ class PhysiciansController extends Controller
     public function reimbursementGuide(Request $request){
       return view('app.physicians.reimbursement-guide');
     }
-    
+
+    public function submitTrainingRequest(Request $request) {
+      $request->validate([
+        'name_first' => 'required|string',
+        'name_last' => 'required|string',
+        'practice_name' => 'required|string',
+        'email' => 'required|email',
+        'phone' => 'required|string',
+        'zip' => 'required|string',
+        'training_type' => 'required|string',
+        'training_format' => 'required|string',
+      ]);
+
+      $record = new TrainingRequest;
+      $record->iid = $this->makeIID();
+      $record->uid = Uuid::uuid6();
+      $record->name_first = $request->get('name_first');
+      $record->name_last = $request->get('name_last');
+      $record->practice_name = $request->get('practice_name');
+      $record->email = $request->get('email');
+      $record->phone = $request->get('phone');
+      $record->zip = $request->get('zip');
+      $record->training_type = $request->get('training_type');
+      $record->training_format = $request->get('training_format');
+      $record->notes = $request->get('notes');
+
+      $record->save();
+      return redirect()->back()->with('success', 'Your request has been submitted!');
+    }
+
 }

+ 11 - 0
app/Models/TrainingRequest.php

@@ -0,0 +1,11 @@
+<?php
+
+namespace App\Models;
+
+use App\Models\Base\BaseModel;
+use Illuminate\Database\Eloquent\Model;
+
+class TrainingRequest extends BaseModel
+{
+    protected $table = 'training_request';
+}

+ 1 - 0
database/migrations/2022_11_14_092057_create_contact_message_table.php

@@ -21,6 +21,7 @@ class CreateContactMessageTable extends Migration
             $table->string('name_last');
             $table->string('email')->nullable();
             $table->string('phone')->nullable();
+            $table->string('zip')->nullable();
             $table->string('subject')->nullable();
             $table->text('message')->nullable();
             $table->timestamps();

+ 43 - 0
database/migrations/2022_11_15_075223_create_training_request_table.php

@@ -0,0 +1,43 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class CreateTrainingRequestTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('training_request', function (Blueprint $table) {
+            $table->id();
+            $table->string('uid')->unique();
+            $table->string('iid')->unique();
+            $table->string('name_first');
+            $table->string('name_last');
+            $table->string('practice_name')->nullable();
+            $table->string('email')->nullable();
+            $table->string('phone')->nullable();
+            $table->string('zip')->nullable();
+            $table->string('training_type')->nullable();
+            $table->string('training_type_other')->nullable();
+            $table->string('training_format')->nullable();
+            $table->longText('notes')->nullable();
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('training_request');
+    }
+}

+ 30 - 15
public/css/style.css

@@ -39,7 +39,7 @@ a {
   font-size: 15px;
 }
 p {
-  font-size: 18px;
+  font-size: 17px;
 }
 .text-pry {
   color: var(--pry-color);
@@ -134,24 +134,20 @@ p {
   border-bottom: 1px solid #ccc;
 }
 .top {
-  background-image: url('/img/top-bg.png');
+  background-image: url('/img/top-bg.jpg');
   background-size: cover;
-  background-position: top center;
+  background-position: top right;
   background-repeat: no-repeat;
   min-height: 600px;
   color: #333;
   display: grid;
 }
-.top .btn {
-  font-size: 20px;
-}
-.top > div {
-}
+
 .top .light-bg p{
   font-size: 19px;
 }
 .top .light-bg {
-  padding: 20px;
+  padding: 40px 30px;
 }
 .light-bg {
   background-color: rgba(255,255,255, .9);
@@ -186,7 +182,6 @@ p {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
-    width: 70%;
 }
 .steps > div {
   width: 100%;
@@ -349,7 +344,7 @@ p {
     font-size: 45px;
   }
   .subtitle {
-    font-size: 35px;
+    font-size: 34px;
   }
   .tt-container {
     flex-wrap: wrap;
@@ -414,6 +409,13 @@ p {
   .navbar-brand img {
     max-width: 250px;
   }
+  .steps {
+    flex-wrap: wrap;
+  }
+  .steps > div {
+    width: 45%;
+    padding-bottom: 30px;
+  }
 }
 @media screen and (max-width:767px) {
   .ft-spacing {
@@ -429,22 +431,29 @@ p {
   .tt-container > div{
     width: 100%;
   }
+  .md-title {
+    font-size: 35px
+  }
 }
 @media screen and (max-width:500px) {
   .navbar-brand img {
-    max-width: 180px;
+    max-width: 170px;
+  }
+  .steps > div {
+    width: 100%;
+    padding-bottom: 0px;
   }
   .top .title {
     text-align: center;
   }
   .title {
-    font-size: 40px;
+    font-size: 38px;
   }
   .subtitle {
-    font-size: 32px;
+    font-size: 30px;
   }
   .header {
-    font-size: 27px;
+    font-size: 26px;
   }
   .ft-spacing {
     padding-left: 20px;
@@ -462,4 +471,10 @@ p {
     object-fit: cover;
     object-position: top;
   }
+  .md-title {
+    font-size: 34px;
+  }
+  .btn-pry, .btn-outline-pry{
+    font-size: 16px
+  }
 }

二進制
public/img/hiw.jpg


二進制
public/img/hiw.png


二進制
public/img/pckg.jpg


二進制
public/img/step2.jpg


二進制
public/img/step3.jpg


二進制
public/img/step4.jpg


二進制
public/img/step5.jpg


二進制
public/img/symps/itching.png


二進制
public/img/symps/swelling.png


二進制
public/img/top-bg.jpg


二進制
public/img/top-bg.png


+ 58 - 41
resources/views/app/about-hem.blade.php

@@ -18,15 +18,17 @@
                   <div class="row align-items-center justify-content-end">
                     <div class="col-xl-10 p-0 py-lg-4">
                       <h4 class="subtitle mb-4">What are hemorrhoids?</h4>
-                      <p>Hemorrhoids emerge when the veins around your anus or your lower rectum get swollen and inflammed. It can be Internal and external.</p>
+                      <p>Hemorrhoids develop when the veins around your anus or lower rectum get swollen and inflamed.</p>
+                      <p>There are two​​ types of hemorrhoids: internal and external.</p>
+                      <p>Hemorrhoids are very common – almost three out of four adults will have hemorrhoids from time to time. Many people get hemorrhoids in older adulthood, though people of any age can experience this problem.</p>
                       <div class="row justify-content-between mt-5">
                         <div class="col-xl-6">
                           <h4 class="mb-3 fw-thin border-top border-white pt-4">External Hemorrhoids</h4>
-                          <p>External Hemorrhoids irritate under the skin around the rectum. Hemorrhoids are prevalent in both men and women and affects 1 in 20 Americans. It is mostly common in adults over the age of 50.</p>
+                          <p>External Hemorrhoids irritate under the skin around the rectum. </p>
                         </div>
                         <div class="col-xl-6">
                           <h4 class="mb-3 border-top border-white pt-4 fw-thin">Internal Hemorrhoids</h4>
-                          <p>Internal Hemorrhoids irritate the lining of anus and lower rectum. </p>
+                          <p>Internal Hemorrhoids irritate the lining of the anus and lower rectum.</p>
                         </div>
                       </div>
                     </div>
@@ -42,23 +44,22 @@
 </div>
 <div class="container py-5">
   <div class="row">
-    <div class="col-lg-3 mb-4">
-      <h4 class="subtitle mb-3">What causes <br class="d-lg-block d-none"> hemorrhoids:</h4>
-      <a href="#" class="btn btn-pry">Learn more</a>
+    <div class="col-lg-6 mb-4">
+      <h4 class="subtitle mb-3">What causes Hemorrhoids?</h4>
+      <p>If you stop and think about it, you put a lot of pressure on the veins of your rectum over the course of day to day life! Over time, that pressure can weaken veins, causing hemorrhoids to form.</p>
     </div>
-    <div class="col-lg-4">
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+    <div class="col-lg-3">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
-            <img src="{{asset('img/causes/cause-1.svg')}}" width="25" alt="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="25" alt="">
           </div>
           <div class="ms-3">
             <h5 class="m-0 mt-2">Low Fiber Diet</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
             <img src="{{asset('img/causes/cause-2.svg')}}" width="28" alt="">
@@ -67,53 +68,68 @@
             <h5 class="m-0 mt-2">Constipation</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
-            <img src="{{asset('img/causes/cause-3.svg')}}" width="25" alt="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="28" alt="">
+          </div>
+          <div class="ms-3">
+            <h5 class="m-0 mt-2">Sitting Longer on the Toilet</h5>
+          </div>
+        </div>
+      </a>
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+        <div class="d-flex align-items-center">
+          <div class="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="28" alt="">
           </div>
           <div class="ms-3">
-            <h5 class="m-0 mt-2">Poor hydration</h5>
+            <h5 class="m-0 mt-2">Pregnancy</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
     </div>
-    <div class="col-lg-4 offset-lg-1">
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+    <div class="col-lg-3">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+        <div class="d-flex align-items-center">
+          <div class="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="28" alt="">
+          </div>
+          <div class="ms-3">
+            <h5 class="m-0 mt-2">Childbirth</h5>
+          </div>
+        </div>
+      </a>
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
-            <img src="{{asset('img/causes/cause-4.svg')}}" width="25" alt="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="25" alt="">
           </div>
           <div class="ms-3">
-            <h5 class="m-0 mt-2">Longer time on Toilet</h5>
+            <h5 class="m-0 mt-2">Heavy Lifting</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
-            <img src="{{asset('img/causes/cause-5.svg')}}" width="28" alt="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="25" alt="">
           </div>
           <div class="ms-3">
-            <h5 class="m-0 mt-2">Pregnancy / Childbirth</h5>
+            <h5 class="m-0 mt-2">Aging</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
-      <a href="#" class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
+      <a class="d-flex justify-content-between align-items-center border-bottom pb-3 mb-3 cause">
         <div class="d-flex align-items-center">
           <div class="">
-            <img src="{{asset('img/causes/cause-6.svg')}}" width="25" alt="">
+            <img src="{{asset('img/causes/cause-2.svg')}}" width="25" alt="">
           </div>
           <div class="ms-3">
             <h5 class="m-0 mt-2">Obesity</h5>
           </div>
         </div>
-        <h5 class="m-0 mt-2"><i class="ms-1 far fa-angle-right"></i></h5>
       </a>
     </div>
   </div>
@@ -139,11 +155,11 @@
             <p class="mt-2">Burning</p>
           </div>
           <div class="d-center">
-            <img src="{{asset('img/symps/symp-4.svg')}}" class="w-75" alt="">
+            <img src="{{asset('img/symps/itching.png')}}" class="w-75" alt="">
             <p class="mt-2">Itching</p>
           </div>
           <div class="d-center">
-            <img src="{{asset('img/symps/symp-5.svg')}}" class="w-75" alt="">
+            <img src="{{asset('img/symps/swelling.png')}}" class="w-75" alt="">
             <p class="mt-2">Swelling around <br> anal canal</p>
           </div>
           <div class="d-center">
@@ -156,37 +172,38 @@
   </div>
 </div>
 <div class="container py-5">
-  <h4 class="subtitle text-center mb-5">How to prevent hemorrhoids?</h4>
+  <h4 class="subtitle text-center">How to prevent hemorrhoids?</h4>
+  <p class="text-center mb-5">There are a few lifestyle choices that both prevent hemorrhoids from developing and help treat hemorrhoids if you have them:</p>
   <div class="row">
     <div class="col-lg-6">
       <div class="pe-lg-4">
         <img src="{{asset('img/prevent-hem.png')}}" class="w-100 mb-3" alt="">
         <div class="border-top mt-4 py-4">
-          <h5 class="header mb-3">Stay physically active</h5>
-          <p>Moderate exercise has a positive effect on improving and preventing many bowel and digestive issues including hemorrhoids. When there is no movement of the body, there is no movement of the bowel. Exercise helps to avoid constipation. It can include walking, running, biking, yoga. Choice is yours to have an active lifestyle. In case you have hemorrhoids, please avoid heavy weight lifting squats that increase abdominal pressure as it can do more harm.</p>
+        <h5 class="header mb-3">Stay Physically Active</h5>
+          <p class="m-0">Moderate exercise has a positive effect on improving and preventing many bowel and digestive issues, including hemorrhoids. When there is no movement of the body, there is no movement of the bowel. Simple exercises like walking, running, biking, and yoga help regulate a working digestive system. If you already have hemorrhoids, consult your physician on heavy weight-lifting of squats, which can increase abdominal pressure and worsen existing hemorrhoids.</p>
+          <p>Once you’ve developed hemorrhoids and start feeling pain or other symptoms (such as rectal bleeding, soiling, and/or bulging), get long-term relief by asking your physician about hemorrhoid banding.</p>
         </div>
       </div>
     </div>
     <div class="col-lg-6">
       <div class="ps-lg-4">
         <div class="border-top py-4">
-          <h5 class="header mb-3">Stay hydrated</h5>
-          <p class="m-0">Drinking plenty of water helps to prevent constipation which in turn reduces straining during the bowel movement. Most healthy people can stay well hydrated by drinking water and other fluids whenever they feel thirsty. For some people, fewer than 8 glasses may be enough. Other people may need more than 8 glasses each day.</p>
+        <h5 class="header mb-3">Eat foods with a high fiber content</h5>
+          <p>Eating foods that are high in fiber can make stools softer, easier to pass, and can help treat and prevent hemorrhoids. The recommended intake is 28 grams of dietary fiber per day, based on standard 2000 calories per day guidelines. If you frequently experience constipation, which can contribute to hemorrhoids, try to avoid foods with less or no fiber such as cheese, chips, ice cream, fast food, meat, frozen prepared foods and processed microwavable dinners.</p>
         </div>
         <div class="border-top mt-3 py-4">
-          <h5 class="header mb-3">Eat a healthy, high-fiber diet</h5>
-          <p class="m-0">Eating foods that are high in fiber can make stools softer and easier to pass and can help treat and prevent hemorrhoids. Recommended dietary fiber intake is 28 grams per day based on 2000 calories intake. Drinking water and other liquids can help the fiber in your diet work better. If constipation is  causing the hemorrhoids, try to avoid foods with less or no fiber such as cheese, chips, ice cream, fast food, meat, frozen prepared foods and processed microwavable dinners.</p>
+        <h5 class="header mb-3">Stay Hydrated</h5>
+          <p class="m-0">Drinking plenty of water helps to prevent constipation, which in turn reduces straining during bowel movements. Most healthy people can stay well hydrated by drinking water and other fluids whenever they feel thirsty. For some people, fewer than 8 glasses may be enough, but for others, you may need well over 8 glasses per day. Consult your physician to find the right balance for your body.</p>
         </div>
         <div class="border-top mt-3 py-4">
-          <h5 class="header mb-3">Timed bathroom trips</h5>
-          <p class="m-0">Don’t  take your phone or newspaper in the toilet. A timed bathroom trip can help to avoid longer time spent on the toilet seat.</p>
+        <h5 class="header mb-3">Timed Bathroom Trips</h5>
+          <p>Don’t take your phone or newspaper in the toilet. A timed bathroom trip can help to avoid longer time spent on the toilet seat.</p>
         </div>
       </div>
     </div>
   </div>
   <div class="d-flex align-items-center justify-content-center my-4">
-    <a href="#" class="btn btn-pry">Treatment guide</a>
-    <a href="#" class="text-dark ms-5">Post-treatment care <i class="ms-2 fal fa-angle-right"></i> </a>
+    <a href="{{ route('find-a-clinic') }}" class="btn btn-pry">Find a Clinic Near You</a>
   </div>
 </div>
 @endsection

+ 95 - 20
resources/views/app/compare.blade.php

@@ -1,21 +1,21 @@
 @extends('layouts.app')
 @section('content')
 <div class="bg-light">
-    <div class="container pt-3">
-        <nav class="mb-0">
-            <ol class="breadcrumb">
-                <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
-                <li class="breadcrumb-item active" aria-current="page">Compare treatment options</li>
-            </ol>
-        </nav>
-    </div>
+  <div class="container pt-3">
+    <nav class="mb-0">
+      <ol class="breadcrumb">
+        <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
+        <li class="breadcrumb-item active" aria-current="page">Compare Treatment Options</li>
+      </ol>
+    </nav>
+  </div>
 </div>
 <div class="bg-grey py-5">
   <div class="container py-lg-4">
     <div class="row justify-content-center">
       <div class="col-lg-7 text-center">
-        <h5 class="subtitle">Compare treatment options</h5>
-        <p>Hemorrhoids get treated at doctors' offices with different treatment options. Snyder Hemband ligation treatment is the most effective, fast, and painless treatment compared to other treatments. It has the least complications and hemorrhoids are less likely to come back than other treatments.</p>
+        <h5 class="subtitle">Compare Treatment Options</h5>
+        <p>There are a number of ways to treat hemorrhoids, from symptom-management to removing the root of the issue. Compared to other hemorrhoid treatments, rubber banding is the fastest, least painful, and most effective solution.</p>
       </div>
     </div>
   </div>
@@ -23,7 +23,7 @@
 <div class="container py-5">
   <div class="row justify-content-center">
     <div class="col-lg-7 py-lg-4 text-center">
-      <h5 class="subtitle">Treatment comparisons:</h5>
+      <h5 class="subtitle">What are my medical options for treating hemorrhoids?</h5>
     </div>
   </div>
   <div class="mt-4 col-lg-12">
@@ -32,11 +32,21 @@
         <thead>
           <tr class="bg-light text-center">
             <th></th>
-            <th><h5 class="m-0 my-3">Success rate</h5></th>
-            <th><h5 class="m-0 my-3">Recurrence rate</h5></th>
-            <th><h5 class="m-0 my-3">Complications</h5></th>
-            <th><h5 class="m-0 my-3">Pain level</h5></th>
-            <th><h5 class="m-0 my-3">Treatment time</h5></th>
+            <th>
+              <h5 class="m-0 my-3">Success rate</h5>
+            </th>
+            <th>
+              <h5 class="m-0 my-3">Recurrence rate</h5>
+            </th>
+            <th>
+              <h5 class="m-0 my-3">Complications</h5>
+            </th>
+            <th>
+              <h5 class="m-0 my-3">Pain level</h5>
+            </th>
+            <th>
+              <h5 class="m-0 my-3">Treatment time</h5>
+            </th>
           </tr>
         </thead>
         <tbody>
@@ -146,13 +156,78 @@
         </tbody>
       </table>
     </div>
-    <div class="my-4 d-flex justify-content-center align-items-center">
+    <div class="mt-4 d-flex justify-content-center align-items-center">
+      <div class="">
+        <img src="{{asset('img/medscape.svg')}}" class="w-100" alt="">
+      </div>
+      <span class="mx-3">|</span>
+      <span>Source: Medscape website</span>
+    </div>
+  </div>
+</div>
+
+<div class="container">
+  <div class="row">
+    <div class="col-lg-12">
+      <hr class="mt-0">
+    </div>
+  </div>
+</div>
+
+<div class="container py-5">
+  <div class="row">
+    <div class="col-lg-6 mb-lg-5 mb-4">
+      <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+        <div class="">
+          <h4 class="header text-dark">Hemorrhoid banding</h4>
+          <p>With rubber band ligation, or banding, a doctor places a rubber band around the swollen tissue and cuts off blood flow to the hemorrhoid. The tissue shrinks away and then detaches from the body, leaving scar tissue that redirects blood flow and even helps to prevent future hemorrhoids. This procedure is painless, safe, convenient, and quick with the Snyder HemBand.</p>
+        </div>
+      </div>
+    </div>
+    <div class="col-lg-6 mb-lg-5 mb-4">
+      <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
         <div class="">
-          <img src="{{asset('img/medscape.svg')}}" class="w-100" alt="">
+          <h4 class="header text-dark">Infrared Coagulation</h4>
+          <p>With infrared coagulation, small internal hemorrhoids are exposed to a laser or infrared light. This causes scar tissue to form, cutting off blood flow and causing hemorrhoidal tissue to die.</p>
         </div>
-        <span class="mx-3">|</span>
-        <span>Source: Medscape website</span>
+      </div>
+    </div>
+  </div>
+  <div class="row">
+    <div class="col-lg-6 mb-4">
+      <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+        <div class="">
+          <h4 class="header text-dark">Sclerotherapy</h4>
+          <p>In this procedure, a solution is injected into the internal hemorrhoid by a doctor, causing scar tissue to form. The scar tissue cuts off the blood supply, often shrinking the hemorrhoids. Results are seen over a series of treatments.</p>
+        </div>
+      </div>
+    </div>
+    <div class="col-lg-6 mb-sm-4">
+      <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+        <div class="">
+          <h4 class="header text-dark">Hemorrhoidectomy</h4>
+          <p>A surgeon performs surgery in which large external hemorrhoids and prolapsing internal hemorrhoids resistant to non-surgical treatments are removed. Anesthesia is required before performing a hemorrhoidectomy. The risk of surgical complications is associated.</p>
+        </div>
+      </div>
+    </div>
+    <div class="col-lg-6 mb-sm-4">
+      <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+        <div class="">
+          <h4 class="header text-dark">Hemorrhoid stapling</h4>
+          <p>A surgeon removes internal hemorrhoid tissue by using a staple and pulls a prolapsing internal hemorrhoid back into the anus. Anesthesia is required before performing a hemorrhoidectomy. The risk of surgical complications is associated.</p>
+          <p>Of the non-surgical options, banding is the leading option. Compared to sclerotherapy, which primarily treats lower-level hemorrhoids over a series of visits, and coagulation, which only treats small hemorrhoids over a series of visits, <b>rubber band ligation can treat most hemorrhoids regardless of size or classification in a single doctor’s office visit.</b></p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="row mt-4">
+    <div class="col-12">
+      <div class="text-center">
+        <a href="{{ route('find-a-clinic') }}" class="btn px-4 py-2 rounded-0 btn-pry">Find a Clinic Near You</a>
+      </div>
     </div>
   </div>
 </div>
+
+
 @endsection

+ 19 - 4
resources/views/app/contact.blade.php

@@ -13,8 +13,8 @@
 <div class="container py-5 my-4">
   <div class="row">
     <div class="col-lg-6 bg-grey p-lg-5 p-4 mb-4" style="border-bottom:7px solid var(--pry-color);">
-      <h4 class="subtitle">Get in touch with us:</h4>
-      <p class="mb-4">Send us Message and we will get back to you!</p>
+      <h4 class="subtitle">Contact us:</h4>
+      <p class="mb-4">If you have any questions about the Snyder HemBand system, hemorrhoid banding, or anything else, you can contact us anytime. We’ll get back to you shortly!</p>
       <form class="" action="{{ route('submit-contact') }}" method="post">
         @csrf
         <div class="row">
@@ -31,9 +31,24 @@
             @enderror
           </div>
         </div>
+        <div class="row">
+          <div class="col-lg-6 form-group mb-4">
+            <input type="email" class="form-control rounded-0 py-3" name="email" placeholder="Email Address" value="{{ old('email') }}">
+            @error('email')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+          </div>
+          <div class="col-lg-6 form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="phone" placeholder="Phone Number" value="{{ old('phone') }}">
+            @error('phone')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+          </div>
+        </div>
+        
         <div class="form-group mb-4">
-          <input type="email" class="form-control rounded-0 py-3" name="email" placeholder="Email Address" value="{{ old('email') }}">
-          @error('email')
+          <input type="text" class="form-control rounded-0 py-3" name="zip" placeholder="Zip Code" value="{{ old('zip') }}">
+          @error('zip')
               <small class="text-warning">{{$message}}</small>
             @enderror
         </div>

+ 52 - 49
resources/views/app/faqs.blade.php

@@ -5,7 +5,7 @@
     <nav class="mb-0">
       <ol class="breadcrumb">
         <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
-        <li class="breadcrumb-item active" aria-current="page">FAQs</li>
+        <li class="breadcrumb-item active" aria-current="page">FAQ</li>
       </ol>
     </nav>
   </div>
@@ -21,10 +21,9 @@
               What are Hemorrhoids?
             </button>
           </h2>
-          <div id="faqContentOne" class="accordion-collapse collapse" aria-labelledby="faqOne" data-bs-parent="#faq">
+          <div id="faqContentOne" class="accordion-collapse collapse bg-light" aria-labelledby="faqOne" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Hemorrhoids, also called piles, are pockets of tissue in the lower rectum that are made up of muscle, blood vessels, and elastic fibers. Hemorrhoids help the body in controlling the expulsion of stools. They exist in every body and are usually unnoticed, but can cause problems when they swell or become inflamed. This can happen when the connective tissue in a hemorrhoid weakens, which allows it to fall down into the anal canal.</p>
-              <p>There are two main types of hemorrhoids: internal hemorrhoids, which can develop inside the rectum, and external hemorrhoids, which are under the skin around the anus.</p>
+              <p>Hemorrhoids, also called piles, are swollen and inflamed veins in the lower rectum that are made up of muscle, blood vessels, and elastic fibers. There are two main types of hemorrhoids: internal hemorrhoids, which can develop inside the rectum, and external hemorrhoids, which are under the skin around the anus.</p>
               <p>Hemorrhoids are very common – almost three out of four adults will have hemorrhoids from time to time. Many people get hemorrhoids in older adulthood, though people of any age can experience this problem.</p>
             </div>
           </div>
@@ -35,9 +34,9 @@
               How common are they?
             </button>
           </h2>
-          <div id="faqContentTwo" class="accordion-collapse collapse" aria-labelledby="faqTwo" data-bs-parent="#faq">
+          <div id="faqContentTwo" class="accordion-collapse collapse bg-light" aria-labelledby="faqTwo" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Hemorrhoids are common in both men and women and affect about 1 in 20 Americans. About half of adults older than age 50 have hemorrhoids. </p>
+              <p>Hemorrhoids are common in both men and women and affect about 1 in 20 Americans. About half of adults older than age 50 have hemorrhoids.</p>
             </div>
           </div>
         </div>
@@ -47,10 +46,21 @@
               What causes Hemorrhoids?
             </button>
           </h2>
-          <div id="faqContentThree" class="accordion-collapse collapse" aria-labelledby="faqThree" data-bs-parent="#faq">
+          <div id="faqContentThree" class="accordion-collapse collapse bg-light" aria-labelledby="faqThree" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Hemorrhoids have a few causes, the main one being too much pressure in the rectum. This can include eating a low fiber diet, constipation, chronic diarrhea, poor hydration, pregnancy and childbirth, obesity, regular heavy lifting of weights or heavy objects, and longer time on the toilet. If left untreated, hemorrhoids can worsen over time, to the point where they can require surgery to remove.</p>
-              <p>It’s also important to note that as you age, your risk of hemorrhoids increases, as the tissues that support the veins in your rectum and anus weaken over time.</p>
+              <p>Hemorrhoids have a few causes, the main one being too much pressure in the rectum. This can include:</p>
+              <ul>
+                <li>eating a low fiber diet</li>
+                <li>constipation</li>
+                <li>chronic diarrhea</li>
+                <li>poor hydration</li>
+                <li>pregnancy and childbirth</li>
+                <li>obesity</li>
+                <li>regular heavy lifting of weights or heavy objects, and</li>
+                <li>longer time on the toilet.</li>
+              </ul>
+              <p>If left untreated, hemorrhoids can worsen over time to the point where they can require surgery to remove.</p>
+              <p>It’s also important to note that as you age, your risk of hemorrhoids increases, as the tissue that supports the veins in your rectum and anus weakens over time.</p>
             </div>
           </div>
         </div>
@@ -60,7 +70,7 @@
               What do Hemorrhoids feel like?
             </button>
           </h2>
-          <div id="faqContentFour" class="accordion-collapse collapse" aria-labelledby="faqFour" data-bs-parent="#faq">
+          <div id="faqContentFour" class="accordion-collapse collapse bg-light" aria-labelledby="faqFour" data-bs-parent="#faq">
             <div class="accordion-body">
               <ul>
                 <li>Hemorrhoids are often painful, particularly in the anus or rectum. If you notice pain is worse during a bowel movement, this is because stool passing through applies pressure on the already-inflamed hemorrhoid.</li>
@@ -76,9 +86,9 @@
               What are the symptoms?
             </button>
           </h2>
-          <div id="faqContentFivee" class="accordion-collapse collapse" aria-labelledby="faqFivee" data-bs-parent="#faq">
+          <div id="faqContentFivee" class="accordion-collapse collapse bg-light" aria-labelledby="faqFivee" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Most common symptom of hemorrhoids is bleeding. You may see bright red blood on toilet paper or blood in your stool. Rectal pain, burning, and itching are other symptoms. You may feel swollen area around anal canal and bulge coming out, requiring hemorrhoids to be pushed back in.</p>
+              <p>The most common symptom of hemorrhoids is bleeding. You may see bright red blood on toilet paper or blood in your stool. Rectal pain, burning, and itching are other symptoms. You may feel a swollen area around the anal canal or a bulge coming out, requiring hemorrhoids to be pushed back in.</p>
             </div>
           </div>
         </div>
@@ -88,11 +98,19 @@
               When should I see a doctor about my hemorrhoids?
             </button>
           </h2>
-          <div id="faqContentFive" class="accordion-collapse collapse" aria-labelledby="faqFive" data-bs-parent="#faq">
+          <div id="faqContentFive" class="accordion-collapse collapse bg-light" aria-labelledby="faqFive" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>You should talk to your doctor if you suspect you have inflamed hemorrhoids, so treatment can begin. If you see bleeding during bowel movements, or have hemorrhoids that don’t improve even after a week of at-home care, you should talk to your doctor.</p>
+              <p>Don’t wait! You should talk to your doctor if you suspect you have hemorrhoids so that treatment can begin. If you experience any symptoms that could be related to hemorrhoids, talk to your doctor.</p>
+              <p>Common symptoms include:</p>
+              <ul>
+                <li>Bleeding</li>
+                <li>Itching</li>
+                <li>Swelling</li>
+                <li>Soiling</li>
+                <li>Pain</li>
+                <li>Bulging</li>
+              </ul>
               <p>Complications from hemorrhoids are rare, but they can happen. It’s possible that anemia could arise through chronic blood loss due to hemorrhoids. Internal hemorrhoids in particular can be “strangulated,” or have their blood supply cut off, which can cause pain. And finally, a hemorrhoid can become thrombosed if a blood clot is formed. While this isn’t life-threatening, it’s certainly painful and may need to be drained.</p>
-              <p></p>
             </div>
           </div>
         </div>
@@ -102,14 +120,14 @@
               How do I prevent hemorrhoids?
             </button>
           </h2>
-          <div id="faqContentSix" class="accordion-collapse collapse" aria-labelledby="faqSix" data-bs-parent="#faq">
+          <div id="faqContentSix" class="accordion-collapse collapse bg-light" aria-labelledby="faqSix" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>There are many preventative measures you can take to prevent hemorrhoids from developing. The most important part of hemorrhoid prevention is keeping your stools soft so they can pass easily.</p>
+              <p>There are many preventative measures you can take to prevent hemorrhoids from developing. The most important part of hemorrhoid prevention is keeping your stool soft so it can pass easily.</p>
               <ul>
-                <li>Eat high-fiber foods. This includes whole grains, fruits, and vegetables. This can help soften the stool and increase its bulk, which can help avoid straining that can induce hemorrhoids. You can also consider fiber supplements to reach the recommended amount of fiber in your diet (20 to 30 grams a day).</li>
-                <li>Drink plenty of fluids. Drinking six to eight glasses of water and other liquids each day helps stools remain soft.</li>
-                <li>Exercise. Preventing constipation and reducing pressure on veins is a big help in preventing hemorrhoids, and can be accomplished by spending less time on your bottom or standing in one place.</li>
-                <li>Avoid long periods of sitting, particularly on the toilet.</li>
+                <li><b>Eat high-fiber foods.</b> This includes whole grains, fruits, and vegetables. This can help soften stool and increase its bulk, which can help avoid straining that can induce hemorrhoids. You can also consider fiber supplements to reach the recommended amount of fiber in your diet (20 to 30 grams a day).</li>
+                <li><b>Drink plenty of fluids.</b> Drinking six to eight glasses of water and other liquids every day helps stool remain soft.</li>
+                <li><b>Exercise.</b> Preventing constipation and reducing pressure on veins is paramount in preventing hemorrhoids, and can be accomplished by spending less time on your bottom or standing in one place.</li>
+                <li><b>Reduce straining.</b> Avoid long periods of sitting, particularly on the toilet.</li>
               </ul>
             </div>
           </div>
@@ -120,14 +138,11 @@
               What is Rubber Band Ligation? How does it work?
             </button>
           </h2>
-          <div id="faqContentSeven" class="accordion-collapse collapse" aria-labelledby="faqSeven" data-bs-parent="#faq">
+          <div id="faqContentSeven" class="accordion-collapse collapse bg-light" aria-labelledby="faqSeven" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Rubber band ligation is a very common procedure to treat hemorrhoids. During the procedure, your doctor will use a ligator (in our case, the Snyder HemBand) to place a gentle, medical-grade rubber band around the base of your hemorrhoid. The band will cut off blood supply or circulation to your hemorrhoid. This will cause your hemorrhoid to shrink and eventually fall off with a bowel movement in 1-3 days following your procedure, usually without you noticing it. Best of all, the procedure takes less than a minute!</p>
-              <p>A small rubber band is placed around the base of a hemorrhoid using Snyder Hemband by your doctor.</p>
-
-              <p>The blood supply to the hemorrhoid is reduced by the generation of compression, causing it to shrink and eventually fall off. This forms a small scar at the base of the hemorrhoid which will heal in just a few days.</p>
-
-              <p>The banding is done above the dentate line, a section of rectum with a very low number of pain-sensitive nerves. This is why the procedure is painless.</p>
+              <p>Rubber band ligation is a very common procedure to treat hemorrhoids. During the procedure, your doctor will use an applicator like the Snyder HemBand to place a gentle, medical-grade rubber band around the base of your hemorrhoid.</p>
+              <p>The band will cut off blood supply or circulation to your hemorrhoid. This will cause your hemorrhoid to shrink and eventually fall off (along with the rubber band) with a bowel movement in 1-3 days following your procedure, usually without you noticing it. Best of all, the procedure takes less than a minute!</p>
+              <p>Snyder Hemband is the system which allows a physician to place a gentle medical rubber band safely around the base of hemorrhoids. The soft rubber band generates the compression around the hemorrhoids reducing the blood supply which causes it to shrink and eventually fall off. It is a painless procedure with little discomfort occasionally. The banding is done above the dentate line, a section of rectum with a very low number of pain-sensitive nerves making the procedure painless. The rubber band is placed around the hemorrhoid in less than a minute.</p>
             </div>
           </div>
         </div>
@@ -137,9 +152,9 @@
             Does Banding hurt?
             </button>
           </h2>
-          <div id="faqContentEight" class="accordion-collapse collapse" aria-labelledby="faqEight" data-bs-parent="#faq">
+          <div id="faqContentEight" class="accordion-collapse collapse bg-light" aria-labelledby="faqEight" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>For most patients, the process is painless. The banding is done above the dentate line, a section of the rectum with a very low number of pain-sensitive nerves.</p>
+              <p>For most patients, the process is painless. Banding is done above the dentate line, a section of the rectum with a very low number of pain-sensitive nerves.</p>
             </div>
           </div>
         </div>
@@ -149,9 +164,9 @@
             How long does it take?
             </button>
           </h2>
-          <div id="faqContentNine" class="accordion-collapse collapse" aria-labelledby="faqNine" data-bs-parent="#faq">
+          <div id="faqContentNine" class="accordion-collapse collapse bg-light" aria-labelledby="faqNine" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>It takes less than a minute to place a band around the Hemorrhoid.</p>
+              <p>It takes less than a minute to place a band around the base of the hemorrhoid.</p>
             </div>
           </div>
         </div>
@@ -161,9 +176,9 @@
             Will my insurance cover Hemorrhoid Banding?
             </button>
           </h2>
-          <div id="faqContentTen" class="accordion-collapse collapse" aria-labelledby="faqTen" data-bs-parent="#faq">
+          <div id="faqContentTen" class="accordion-collapse collapse bg-light" aria-labelledby="faqTen" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Most major health insurance plans cover the procedure, though we recommend calling your insurance company prior to having the procedure done to verify eligibility and coverage.</p>
+              <p>Most major health insurance plans cover banding, including Medicare, Medicaid, and TriCare. If you have a private health insurance plan, the hemorrhoid clinic can verify your coverage before your banding.</p>
             </div>
           </div>
         </div>
@@ -173,21 +188,9 @@
             Does it require any preparation?
             </button>
           </h2>
-          <div id="faqContentEleven" class="accordion-collapse collapse" aria-labelledby="faqEleven" data-bs-parent="#faq">
-            <div class="accordion-body">
-              <p>No, the banding does not require any bowel cleansing preparation. The method is done in a doctor’s office and does not require anesthesia.</p>
-            </div>
-          </div>
-        </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqTwelve">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentTwelve" aria-expanded="false" aria-controls="faqContentTwelve">
-            What to do after Snyder Hemband Treatment?
-            </button>
-          </h2>
-          <div id="faqContentTwelve" class="accordion-collapse collapse" aria-labelledby="faqTwelve" data-bs-parent="#faq">
+          <div id="faqContentEleven" class="accordion-collapse collapse bg-light" aria-labelledby="faqEleven" data-bs-parent="#faq">
             <div class="accordion-body">
-              <p>Follow your doctor’s instructions. Avoid heavy lifting and strenuous exercise for 2-3 days. Avoid staying seated for a long period of time. Increase high-fiber diet. Drink plenty of water. Follow the dietary guidelines provided to you by your doctor.</p>
+              <p>No, banding does not require any bowel cleansing preparation. Banding is done in the exam room of a normal doctor’s office without anesthesia.</p>
             </div>
           </div>
         </div>
@@ -195,4 +198,4 @@
     </div>
   </div>
 </div>
-@endsection
+@endsection

+ 16 - 15
resources/views/app/index.blade.php

@@ -11,7 +11,7 @@
     </div>
 </div>
 <div class="top">
-  <div class="">
+  <div class="py-5">
     <div class="container h-100 d-flex align-items-center">
       <div class="row">
         <div class="col-lg-7">
@@ -22,9 +22,9 @@
             <p class="mb-3">Non-surgical. Painless. Return to work immediately.</p>
             <p class="mb-3">Just a simple, medical-grade rubber band that takes a doctor <b>less than 60 seconds</b> to apply at the base of your hemorrhoid.</p>
             <p class="mb-3">The hemorrhoid shrinks and falls off, typically within 24 hours.</p>
-            <div class="d-sm-flex align-items-center my-4">
+            <div class="d-flex align-items-center my-4">
               <a href="#" class="btn btn-pry">Find a Clinic</a>
-              <a href="#" class="btn btn-outline-pry ms-sm-4 ms-0 mt-sm-0 mt-4">How it Works</a>
+              <a href="#" class="btn btn-outline-pry ms-4">How it Works</a>
             </div>
           </div>
         </div>
@@ -33,7 +33,7 @@
   </div>
 </div>
 
-<div class="container pt-md-5 pt-4">
+<div class="container pe-lg-0 pt-md-5 pt-4">
 
   <div class="row">
     <div class="col-lg-6">
@@ -50,7 +50,7 @@
 
       </div>
     </div>
-    <div class="col-lg-5 offset-lg-1">
+    <div class="col-lg-5 offset-lg-1 mt-lg-0 mt-4">
       <div class="bg-dark text-white p-4">
         <h4>Hemorrhoids are common.</h4>
         <p>Hemorrhoids are very prevalent in both men and women. About half of all people will have hemorrhoids by age 50.</p>
@@ -79,10 +79,10 @@
           </h4>
           <h4 class="mb-3">1. It's fast, safe, and effective.</h4>
           <p class="border-bottom pb-4">Banding is the "gold-standard" for treating hemorrhoids, with a greater than 95% success rate. It takes less than a minute.</p>
-        
+
           <h4 class="mb-3">2. It's available near you!</h4>
           <p class="border-bottom pb-4">With thousands of physicians across the United States are trained in how to use the HemBand, there's a clinic near you!</p>
-        
+
           <h4 class="mb-3">3. It's covered by insurance.</h4>
           <p class="border-bottom pb-4">HemBand treatment is covered by most insurance plans, including Medicare, Medicaid, and TriCare.</p>
         </div>
@@ -123,23 +123,23 @@
 </div>
 
 <div class="container">
-  <div class="d-sm-flex align-items-start justify-content-between pt-5 pb-5">
-    <div class="text-center w-100 mb-sm-0 mb-4">
+  <div class="steps pt-5 pb-5">
+    <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-1.svg')}}" height="40">
       <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>
     </div>
-    <div class="text-center w-100 mb-sm-0 mb-4">
+    <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-3.svg')}}" height="40">
       <p class="mt-3"><b>Painless</b></p>
       <p class="px-4">Banding is painless, non-surgical, and requires no medication before or after treatment.</p>
     </div>
-    <div class="text-center w-100 mb-sm-0 mb-4">
+    <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-2.svg')}}" height="40">
       <p class="mt-3"><b>Long-Term Effectiveness</b></p>
       <p class="px-4">Instead of treating symptoms, banding gently removes hemorrhoids themselves.</p>
     </div>
-    <div class="text-center w-100 mb-sm-0 mb-4">
+    <div class="text-center mb-sm-0 mb-4">
       <img src="{{asset('img/fp/fp-4.svg')}}" height="40">
       <p class="mt-3"><b>Covered by Most Health Plans</b></p>
       <p class="px-4">Banding is covered by most major health plans including Medicare, Medicaid, and TriCare.</p>
@@ -205,14 +205,15 @@
     </div>
   </div>
 </div>
+
 <div class="mt-4 bg-grey py-5">
   <div class="container py-lg-4">
     <div class="row align-items-center">
-      <div class="col-xl-5 col-lg-6">
+      <div class="col-xl-5 col-lg-6 col-10 offset-lg-0 offset-1">
         <img src="{{asset('img/pc-top.png')}}" class="w-100" alt="">
       </div>
-      <div class="col-xl-5 offset-lg-1 col-lg-5 mb-lg-0 mb-4">
-        <h4 class="subtitle">Don't just treat your symptoms.</h4>
+      <div class="col-lg-5 offset-lg-1 mt-lg-0 mt-4">
+        <h4 class="subtitle w-100">Don't just treat your symptoms.</h4>
           <hr class="opacity-100">
           <h5>If you are experiencing any of the following:</h5>
           <ul>

+ 127 - 21
resources/views/app/physicians/get-trained.blade.php

@@ -2,32 +2,138 @@
 @section('content')
 
 <div class="bg-light">
-    <div class="container pt-3">
-        <nav class="mb-0">
-            <ol class="breadcrumb">
-                <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
-                <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
-                <li class="breadcrumb-item active" aria-current="page">Get Trained</li>
-            </ol>
-        </nav>
-    </div>
-</div>
-<div class="bg-grey py-5">
-  <div class="container py-lg-4">
-    <div class="row justify-content-center">
-      <div class="col-lg-7 text-center">
-        <h5 class="subtitle">Get Trained</h5>
-        <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolore repellat dolorem accusantium similique quae temporibus molestias cupiditate. Adipisci deleniti magni quisquam quibusdam asperiores repudiandae, cumque, dolore maxime nam cum velit.</p>
-      </div>
-    </div>
+  <div class="container pt-3">
+    <nav class="mb-0">
+      <ol class="breadcrumb">
+        <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
+        <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
+        <li class="breadcrumb-item active" aria-current="page">Get Trained</li>
+      </ol>
+    </nav>
   </div>
 </div>
-<div class="container py-5">
+<div class="container py-5 my-4">
   <div class="row">
-    <div class="col-md-12">
+    <div class="col-lg-5">
+      <h5 class="subtitle">“Schedule a Training” OR “Access Clinical and Staff Training”</h5>
+      <p>We’re excited that your practice is interested in offering the Snyder HemBand system to your patients. To provide the best in patient care, we have a number of training modules for physicians, clinical staff, and office staff available to support our practice partners. Our in-person and online module options have been created with the help of leading gastroenterologists.</p>
+      
+      <div class="row mt-5">
+        <div class="col-sm-6 mb-4">
+          <h5 class="header m-0">Our Office</h5>
+          <hr class="w-100 my-3">
+          <div class="">
+            258 Chapman Road, <br>
+            Suite 101-A, <br>
+            Newark, DE 19702
+          </div>
+        </div>
+        <div class="col-sm-6 mb-4">
+          <h5 class="header m-0">Contact</h5>
+          <hr class="w-100 my-3">
+          <h5 class="mb-2">General questions</h5>
+          <div class="mb-4">
+            <a class="text-dark" href="mailto:info@snyderhemband.com">info@snyderhemband.com</a> <br>
+            <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
+          </div>
+          <h5 class="mb-2">For physicians</h5>
+          <div class="mb-4">
+            <a class="text-dark" href="mailto:phy@snyderhemband.com">phy@snyderhemband.com</a> <br>
+            <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="col-lg-6 bg-grey p-lg-5 p-4 mb-4 offset-lg-1" style="border-bottom:7px solid var(--pry-color);">
+      <h4 class="subtitle">Schedule a Training</h4>
+      <p class="mb-4">Fill out the form below to schedule a personalized training session with our team of experts. </p>
+      <form class="" action="{{ route('physicians.submit-training-request') }}" method="post">
+        @csrf
+        <div class="row">
+          <div class="col-lg-6 form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="name_first" placeholder="First Name" value="{{ old('name_first') }}" />
+            @error('name_first')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+          <div class="col-lg-6 form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="name_last" placeholder="Last Name" value="{{ old('name_last') }}" />
+            @error('name_last')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+          <div class="col-lg-12 form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="practice_name" placeholder="Practice Name" value="{{ old('practice_name') }}" />
+            @error('practice_name')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+        </div>
+        <div class="row">
+          <div class="col-lg-6 form-group mb-4">
+            <input type="email" class="form-control rounded-0 py-3" name="email" placeholder="Contact Email" value="{{ old('email') }}" />
+            @error('email')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+          <div class="col-lg-6 form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="phone" placeholder="Contact Phone Number" value="{{ old('phone') }}" />
+            @error('phone')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+        </div>
         
+        <div class="form-group mb-4">
+          <input type="text" class="form-control rounded-0 py-3" name="zip" placeholder="Zip Code" value="{{ old('zip') }}" />
+          @error('zip')
+          <small class="text-warning">{{$message}}</small>
+          @enderror
+        </div>
+        <div class="row">
+          <div class="col-lg-6 form-group mb-4">
+            <select class="form-control rounded-0 py-3" name="training_type">
+              <option value="">Training Type</option>
+              <option value="Clinical Training">Clinical Training</option>
+              <option value="Staff Training">Staff Training</option>
+              <option value="Other">Other</option>
+            </select>
+            @error('training_type')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+          <div class="col-lg-6 form-group mb-4">
+          <select class="form-control rounded-0 py-3" name="training_format">
+              <option value="">Training Format</option>
+              <option value="In-person">In-person</option>
+              <option value="Online">Online</option>
+            </select>
+            @error('training_format')
+            <small class="text-warning">{{$message}}</small>
+            @enderror
+          </div>
+        </div>
+
+        <div class="form-group mb-4">
+          <textarea name="notes" class="form-control rounded-0" placeholder="Other Notes" rows="6">{{ old('notes') }}</textarea>
+          @error('notes')
+              <small class="text-warning">{{$message}}</small>
+            @enderror
+        </div>
+
+        @if($errors->any())
+        <div class="alert alert-danger fade show" role="alert">
+          There were errors found!
+        </div>
+        @endif
+        @if(session('success'))
+        <div class="alert alert-success fade show" role="alert">
+          {{session('success')}}
+        </div>
+        @endif
+        <button type="submit" class="btn btn-pry w-100 py-3">Submit</button>
+      </form>
     </div>
   </div>
 </div>
-
 @endsection

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

@@ -24,7 +24,7 @@
                         <p class="mb-3">Get trained in less than 1 hour.</p>
                         <div class="d-sm-flex align-items-center my-4">
                             <a href="{{ route('physicians.practice-support') }}" class="btn btn-pry">Learn More</a>
-                            <a href="{{ route('physicians.get-trained') }}" class="btn btn-outline-pry ms-sm-4 ms-0 mt-sm-0 mt-4">Get Trained</a>
+                            <a href="{{ route('physicians.get-trained') }}" class="btn btn-outline-pry ms-sm-4 ms-0">Get Trained</a>
                         </div>
                     </div>
                 </div>

+ 99 - 0
resources/views/app/physicians/instructions-for-use.blade.php

@@ -0,0 +1,99 @@
+@extends('layouts.physicians')
+@section('content')
+
+<div class="bg-light">
+    <div class="container pt-3">
+        <nav class="mb-0">
+            <ol class="breadcrumb">
+                <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">Instructions</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+<div class="bg-grey py-5">
+  <div class="container py-lg-4">
+    <div class="row justify-content-center">
+      <div class="col-lg-7 text-center">
+        <h4 class="title">Instructions For Use</h4>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="container py-5">
+  <div class="row">
+    <div class="col-lg-5">
+      <h5 class="subtitle text-pry">Package Contents</h5>
+      <p>Each package contains the following pieces, which fit together into an assembly that is necessary for successful performance of the RBL procedure.</p>
+      <div class="text-center">
+        <img src="{{asset('img/pckg.jpg')}}" class="w-50" alt="">
+      </div>
+    </div>
+    <div class="col-lg-6 offset-lg-1">
+      <h5 class="header">Introduction:</h5>
+      <p>The Snyder HemBand is a non-surgical, disposable, single-use system for the treatment of hemorrhoids using Rubber Band Ligation (RBL).</p>
+      <p>It utilizes a simple suction syringe with an integrated obturator to ensure patient comfort and ease during the procedure.</p>
+      <p>During the procedure, a ligation rubber band is placed around the base of the hemorrhoid to disrupt blood flow to the hemorrhoid.</p>
+      <p>RBL is a simple, safe, and effective method for treating symptomatic hemorrhoids with significant improvement in quality of life.</p>
+
+      <h5 class="header mt-5">Cautions:</h5>
+      <ul>
+        <li>Federal law restricts sale of this device to physicians only.</li>
+        <li>The Synder HemBand Ligator is designed for single-use only.</li>
+        <li>The rubber bands (4) supplied within the Snyder HemBand package contain latex, which may cause an allergic reaction in some patients. Latex-free bands are available upon request.</li>
+        <li>Do not use this device other than for the indicated use.</li>
+      </ul>
+      <h5 class="header mt-5">Pre-Procedure:</h5>
+      <ol>
+        <li>Read these instructions carefully. Assess the patient’s allergy history. If the patient has a documented history of allergy to latex, please contact us for latex-free rubber bands.</li>
+        <li>Inspect the package for safety. The Snyder HemBand is dispensed within a sealed container. If this container is damaged, or the seal is broken, do not use the device. Please contact us for a replacement. </li>
+      </ol>
+    </div>
+  </div>
+</div>
+<div class="bg-light py-5">
+  <div class="container py-lg-4">
+    <h5 class="header text-center mb-4">Procedure:</h5>
+    <div class="row">
+      <div class="col-lg-5">
+        <p class="d-flex mb-4"><span class="me-1">1.</span> Perform a digital rectal exam, followed by anoscopy or sigmoidoscopy, as deemed appropriate by a licensed healthcare professional.</p>
+        <p class="d-flex"><span class="me-1">2.</span> Place the Release Cap (2) onto the Suction Syringe (1). Pull the Release Cap (2) back until the tip of the Suction Syringe (1) protrudes out of the Release Cap (2).</p>
+        <div class="text-center mb-4">
+          <img src="{{asset('img/step2.jpg')}}" style="width:90%" alt="">
+        </div>
+        <p class="d-flex"><span class="me-1">3.</span> Pull the plunger of the Suction Syringe (1) back to accommodate the Loading Cone (3). Attach a Loading Cone (3) to the tip of the Suction Syringe (1).</p>
+        <div class="text-center mb-4">
+          <img src="{{asset('img/step3.jpg')}}" style="width:90%" alt="">
+        </div>
+        <p class="d-flex"><span class="me-1">4.</span> Load one Rubber Band (4) onto the tip of the Loading Cone (3). Roll the Rubber Band (4) onto the tip of the Suction Syringe (1).</p>
+        <div class="text-center mb-4">
+          <img src="{{asset('img/step4.jpg')}}" style="width:90%" alt="">
+        </div>
+        <p class="d-flex"><span class="me-1">5.</span> Remove the Loading Cone (3), and push down on the plunger so that the integrated obturator is protruding out of the Suction Syringe (1). The assembly is now ready for use on a patient.</p>
+        <div class="text-center mb-4">
+          <img src="{{asset('img/step5.jpg')}}" style="width:90%" alt="">
+        </div>
+      </div>
+      <div class="col-lg-2 d-lg-flex justify-content-center d-none">
+        <div style="width:1px;border-right:1px dashed #333;" class="h-100"></div>
+      </div>
+      <div class="col-lg-5">
+        <p class="d-flex mb-4"><span class="me-1">6.</span> With the aid of the integrated obturator, introduce the ligator into the rectum, targeting the affected area.</p>
+        <p class="d-flex mb-4"><span class="me-1">7.</span> Place the tip of the syringe at the desired angle to ensure ligation of the appropriate area to be banded.</p>
+        <p class="d-flex mb-4"><span class="me-1">8.</span> Place your thumb on the handle of the Suction Syringe (1) and pull back on the plunger to create full suction, until the plunger gets gently locked into place. This ensures optimal tissue capture.</p>
+        <p class="d-flex mb-4"><span class="me-1">9.</span> Rotate the ligator 90 degrees in each direction to make sure the patient does not experience pain or a “pinching” sensation.</p>
+        <p class="d-flex mb-4"><span class="me-1" style="visibility:hidden;">9.</span> If the patient complains of any pain or discomfort, this indicates that there is either too much tissue in the ligator, or that tissue is too close to the dentate line.</p>
+        <p class="d-flex mb-4"><span class="me-1" style="visibility:hidden;">9.</span> Push down on the plunger to release the tissue and start again from step 6, ensuring that ligator tip placement is below the dentate line.</p>
+        <p class="d-flex mb-4"><span class="me-1" style="visibility:hidden;">9.</span> If, for any reason, the banding procedure needs to be terminated, advance the plunger to release suction.</p>
+        <p class="d-flex mb-4"><span class="me-1">10.</span> Gently push the Release Cap (2) forward to discharge the Rubber Band (4).</p>
+        <p class="d-flex mb-4"><span class="me-1">11.</span> Push down on the plunger of the Suction Syringe (1) to release suction, and withdraw the ligator from the rectum.</p>
+        <p class="d-flex mb-4"><span class="me-1">12.</span> Perform a digital rectal examination to confirm proper placement of the Rubber Band (4).</p>
+        <p class="d-flex mb-4"><span class="me-1">13.</span> Dispose of the ligator assembly appropriately.</p>
+        <p class="d-flex mb-4"><span class="me-1">14.</span> Provide the patient with the post-procedure instructional handout contained within the Snyder HemBand package.</p>
+      </div>
+    </div>
+  </div>
+</div>
+@endsection

+ 179 - 74
resources/views/app/post-care.blade.php

@@ -14,8 +14,10 @@
   <div class="container py-lg-4">
     <div class="row align-items-center">
       <div class="col-xl-4 col-lg-5 mb-lg-0 mb-4">
-        <h5 class="subtitle mb-4">What’s next?</h5>
-        <p>You’re on your way back to living life to the fullest! Hemorrhoids commonly originate at three sites in the rectal area. So depending on the findings, your doctor may schedule three or more treatment sessions. Doctors generally treat one site during each session.</p>
+        <h5 class="subtitle mb-4">Post-Banding Care</h5>
+        <p>Banding involves the placement of a rubber at the base of your hemorrhoid. This applies gentle pressure to the area, reducing blood flow to the hemorrhoid, causing it to shrink away and fall off along with the rubber band (typically within 24 hours) during a bowel movement.</p>
+        <p>You will not usually notice both the hemorrhoid and rubber band coming off during a bowel movement.</p>
+        <p>Generally, after the hemorrhoid falls off within a few days, it may take one to two weeks for the live tissue to fully heal. You can help your recovery by avoiding straining and following a few simple steps that will not only help you recover faster, but also help prevent future hemorrhoids from developing.</p>
       </div>
       <div class="col-xl-7 col-lg-6 offset-lg-1">
         <img src="{{asset('img/pc-top.png')}}" class="w-100" alt="">
@@ -24,92 +26,195 @@
   </div>
 </div>
 <div class="container py-5">
-  <div class="row">
-    <div class="col-lg-8 offset-lg-2 mb-lg-5 mt-lg-3">
-      <h5 class="subtitle text-center mb-4">Frequently asked questions</h5>
-      <div class="accordion" id="faq">
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqOne">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentOne" aria-expanded="false" aria-controls="faqContentOne">
-              Can Snyder Hemband work for me?
-            </button>
-          </h2>
-          <div id="faqContentOne" class="accordion-collapse collapse" aria-labelledby="faqOne" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+    <div class="row">
+      <div class="col-lg-12 text-center">
+        <h4 class="subtitle mb-4 pb-3 text-pry">Post-Banding Tips</h4>
+      </div>
+    </div>
+    <div class="row">
+      <div class="col-lg-6 mb-lg-5 mb-4">
+        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+          <div class="me-lg-4 me-sm-3">
+            <h5 class="title"><i class="fal fa-tint"></i></h5>
           </div>
-        </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqTwo">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentTwo" aria-expanded="false" aria-controls="faqContentTwo">
-              How long will the procedure take?
-            </button>
-          </h2>
-          <div id="faqContentTwo" class="accordion-collapse collapse" aria-labelledby="faqTwo" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+          <div class="">
+            <h4 class="header">Monitor what you eat and drink</h4>
+            <p>Drinking 8-10 glasses of water per day is important for keeping your stool soft. If your physician suggests regular use of fiber supplements, remember to drink plenty of fluids.</p>
           </div>
         </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqThree">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentThree" aria-expanded="false" aria-controls="faqContentThree">
-              Does it require multiple treatments?
-            </button>
-          </h2>
-          <div id="faqContentThree" class="accordion-collapse collapse" aria-labelledby="faqThree" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+      </div>
+      <div class="col-lg-6 mb-lg-5 mb-4">
+        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+          <div class="me-lg-4 me-sm-3">
+            <h5 class="title"><i class="fal fa-toilet"></i></h5>
           </div>
-        </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqFour">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentFour" aria-expanded="false" aria-controls="faqContentFour">
-              What type of preparation/recovery should be expected?
-            </button>
-          </h2>
-          <div id="faqContentFour" class="accordion-collapse collapse" aria-labelledby="faqFour" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+          <div class="">
+            <h4 class="header">Avoid straining</h4>
+            <p>As much as possible, avoid straining during a bowel movement.</p>
           </div>
         </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqFivee">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentFivee" aria-expanded="false" aria-controls="faqContentFivee">
-              How much does hemorrhoid banding with the Snyder Hemband cost?
-            </button>
-          </h2>
-          <div id="faqContentFivee" class="accordion-collapse collapse" aria-labelledby="faqFivee" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+      </div>
+    </div>
+    <div class="row">
+      <div class="col-lg-6 mb-4">
+        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+          <div class="me-lg-4 me-sm-3">
+            <h5 class="title"><i class="fal fa-dumbbell"></i></h5>
           </div>
-        </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqFive">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentFive" aria-expanded="false" aria-controls="faqContentFive">
-              How is this different from traditional Rubber Band Ligation?
-            </button>
-          </h2>
-          <div id="faqContentFive" class="accordion-collapse collapse" aria-labelledby="faqFive" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+          <div class="">
+            <h4 class="header">Be mindful of exercise</h4>
+            <p>After Snyder HemBand treatment, refrain from heavy lifting and strenuous exercise for the next 2-3 days. It’s also important to avoid sitting for long periods of time – you should stand up and walk every couple of hours. Maintain a regular exercise routine and a healthy weight to help avoid recurrence of hemorrhoids.</p>
           </div>
         </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqSix">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentSix" aria-expanded="false" aria-controls="faqContentSix">
-              What should I do if I have discomfort/ cramping in the pelvic area?
-            </button>
-          </h2>
-          <div id="faqContentSix" class="accordion-collapse collapse" aria-labelledby="faqSix" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+      </div>
+      <div class="col-lg-6 mb-sm-4">
+        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
+          <div class="me-lg-4 me-sm-3">
+            <h5 class="title"><i class="fal fa-pills"></i></h5>
           </div>
-        </div>
-        <div class="accordion-item">
-          <h2 class="accordion-header" id="faqSeven">
-            <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faqContentSeven" aria-expanded="false" aria-controls="faqContentSeven">
-              When should I contact my doctor?
-            </button>
-          </h2>
-          <div id="faqContentSeven" class="accordion-collapse collapse" aria-labelledby="faqSeven" data-bs-parent="#faq">
-            <div class="accordion-body">...</div>
+          <div class="">
+            <h4 class="header">Use medications carefully</h4>
+            <p>Continue to take your regular medications as prescribed. Check with your physician about medications that could cause constipation or diarrhea. Unless your doctor directs you to do so, do not insert medication inside your rectum.</p>
           </div>
         </div>
       </div>
     </div>
+</div>
+<div class="bg-light py-5">
+    <div class="container">
+        <div class="row justify-content-center text-center">
+            <div class="col-xl-7 col-lg-9">
+                <h4 class="subtitle">Diet and Nutrition Guidelines for Hemorrhoids</h4>
+                <p>Eating foods that are high in fiber can make stools softer, easier to pass, and can help treat and prevent hemorrhoids. The recommended intake is 28 grams of dietary fiber per day, based on standard 2000 calories per day guidelines.</p>
+            </div>
+        </div>
+    </div>
+</div>
+<div class="py-5">
+  <div class="container">
+      <div class="row justify-content-center text-center">
+          <div class="col-xl-7 col-lg-9">
+            <div class="table-responsive">
+              <table class="table table-bordered text-start">
+                <tr>
+                  <td colspan="2">
+                    <h4 class="m-0">FIBER-RICH FOODS*</h4>
+                  </td>
+                </tr>
+                <tr>
+                  <td><b>FOOD & PORTION SIZE</b></td>
+                  <td><b>FIBER AMOUNT</b></td>
+                </tr>
+                <tr>
+                  <td colspan="2"><em><b>GRAINS</b></em></td>
+                </tr>
+                <tr>
+                  <td>¾ cup high-fiber bran, ready-to-eat cereal</td>
+                  <td>9.1-14.3 grams</td>
+                </tr>
+                <tr>
+                  <td>1 1 cups of shredded wheat, ready-to-eat cereal</td>
+                  <td>5.0-9.0 grams</td>
+                </tr>
+                <tr>
+                  <td>1 ½ cups whole-wheat spaghetti, cooked</td>
+                  <td>3.2 grams</td>
+                </tr>
+                <tr>
+                  <td>1 small oat bran muffin</td>
+                  <td>3.0 grams</td>
+                </tr>
+                <tr>
+                  <td colspan="2"><em><b>FRUITS</b></em></td>
+                </tr>
+                <tr>
+                  <td>1 medium pear, with skin</td>
+                  <td>5.5 grams</td>
+                </tr>
+                <tr>
+                  <td>1 medium apple, with skin</td>
+                  <td>4.4 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup of raspberries</td>
+                  <td>4.0 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup of stewed prunes</td>
+                  <td>3.8 grams</td>
+                </tr>
+                <tr>
+                  <td colspan="2"><em><b>VEGETABLES</b></em></td>
+                </tr>
+                <tr>
+                  <td>½ cup of green peas, cooked</td>
+                  <td>3.5-4.4 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup of mixed vegetables, cooked from frozen</td>
+                  <td>4.0 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup of collards, cooked</td>
+                  <td>3.8 grams</td>
+                </tr>
+                <tr>
+                  <td>1 medium sweet potato, baked in skin</td>
+                  <td>3.8 grams</td>
+                </tr>
+                <tr>
+                  <td>1 medium potato, baked, with skin</td>
+                  <td>3.6 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup of winter squash, cooked</td>
+                  <td>2.9 grams</td>
+                </tr>
+                <tr>
+                  <td colspan="2"><em><b>BEANS</b></em></td>
+                </tr>
+                <tr>
+                  <td>½ cup navy beans, cooked</td>
+                  <td>9.6 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup pinto beans, cooked</td>
+                  <td>7.7 grams</td>
+                </tr>
+                <tr>
+                  <td>½ cup kidney beans, cooked</td>
+                  <td>5.7 grams</td>
+                </tr>
+                <tr>
+                  <td colspan="2"><small style="font-size:12px;">*Adapted from NIDDK website</small> </td>
+                </tr>
+              </table>
+            </div>
+          </div>
+      </div>
   </div>
 </div>
+<div class="bg-grey py-5">
+    <div class="container">
+        <div class="row justify-content-center text-center">
+            <div class="col-xl-6 col-lg-9">
+                <h4 class="subtitle">What should I do if I have discomfort/cramping in the pelvic area?</h4>
+                <p class="pt-3">Occasionally, some patients experience pelvic area cramping, but these symptoms typically resolve within 1 to 2 days. If you experience this, you can take over-the-counter acetaminophen or ibuprofen as directed by your doctor.</p>
+                <p>Another alternative to help relieve these symptoms and also cleanse the anal area is a sitz (or hip) bath, where you simply sit in warm water. This can alleviate any discomfort you might experience.</p>
+            </div>
+        </div>
+    </div>
+</div>
+<div class="py-5">
+    <div class="container">
+        <div class="row justify-content-center text-center">
+            <div class="col-xl-6 col-lg-9">
+                <h4 class="subtitle">When should I contact my doctor?</h4>
+                <p class="pt-3">Immediately call your doctor if you have symptoms such as pain in the anal area, fever, bleeding, chills or any other unusual symptoms.</p>
+                <p class="mt-5"><b>See answers to more Frequently Asked Questions.</b> </p>
+                <a href="{{route('faqs')}}" class="btn btn-pry">Frequently Asked Questions</a>
+            </div>
+        </div>
+    </div>
+</div>
 @endsection

+ 24 - 70
resources/views/app/snyder.blade.php

@@ -5,24 +5,22 @@
         <nav class="mb-0">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
-                <li class="breadcrumb-item active" aria-current="page">Snyder Hemband</li>
+                <li class="breadcrumb-item active" aria-current="page">How it Works</li>
             </ol>
         </nav>
     </div>
     <hr>
     <div class="container">
-      <div class="py-5 mb-4">
+      <div class="py-5 mb-4 px-1">
           <div class="text-center">
-              <h4 class="title mb-3">Snyder Hemband</h4>
-              <p class="mb-4">Snyder hemband is a device for treating hemorrhoids. The components of this device <br class="d-lg-block d-none"> include an inner tube, plunger, outer tube, thumb pusher, loading device, and elastic band.</p>
-              <a href="#" class="btn btn-pry py-2">Order now</a>
-              <a href="#" class="btn btn-secondary rounded-0 py-2 px-5 ms-4">Benefits</a>
+              <h4 class="title mb-3">Meet the Snyder Hemband Applicator</h4>
+              <p class="mb-4">The Snyder HemBand is a rubber band applicator that allows a physician to place a rubber band <br class="d-lg-block d-none"> at the base of the hemorrhoid, cutting off its blood flow, causing it to shrink and fall off. </p>
           </div>
       </div>
     </div>
 </div>
 <div class="container">
-    <div class="border bg-white p-5 text-center position-relative" style="top:-80px">
+    <div class="border bg-white p-md-5 p-4 text-center position-relative" style="top:-80px">
         <img src="{{asset('img/snyder.png')}}" class="w-75" alt="">
     </div>
     <div class="row position-relative" style="top:-40px;margin-bottom:-40px">
@@ -33,27 +31,27 @@
             <div class="row mb-sm-4">
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5">
                     <img src="{{asset('img/benefits/ben-1.svg')}}" width="45" alt="">
-                    <p class="mt-2">No sedation is required prior to treatment</p>
+                    <p class="mt-2">No anesthesia, sedation, or medication is required prior to treatment.</p>
                 </div>
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5 offset-sm-2">
                     <img src="{{asset('img/benefits/ben-2.svg')}}" width="45" alt="">
-                    <p class="mt-2">It causes no pain</p>
+                    <p class="mt-2">The procedure is painless.</p>
                 </div>
             </div>
             <div class="row mb-sm-4">
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5">
                     <img src="{{asset('img/benefits/ben-3.svg')}}" width="45" alt="">
-                    <p class="mt-3">It has a great success rate as it prevents early deployment of elastic bands.</p>
+                    <p class="mt-3">It has a great success rate.</p>
                 </div>
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5 offset-sm-2">
                     <img src="{{asset('img/benefits/ben-4.svg')}}" width="45" alt="">
-                    <p class="mt-3">Latex free option of elastic band is available for those allergic to latex.</p>
+                    <p class="mt-3">A latex-free option is available for those allergic to latex.</p>
                 </div>
             </div>
             <div class="row mb-4">
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5">
                     <img src="{{asset('img/benefits/ben-5.svg')}}" width="45" alt="">
-                    <p class="mt-3">Proper grip mechanism makes the treatment quicker than other ligation treatment.</p>
+                    <p class="mt-3">Banding takes less than a minute.</p>
                 </div>
                 <div class="d-lg-block d-flex flex-column align-items-center text-sm-start text-center col-sm-5 offset-sm-2">
                     <img src="{{asset('img/benefits/ben-6.svg')}}" width="45" alt="">
@@ -68,69 +66,25 @@
         <div class="row justify-content-center text-center">
             <div class="col-xl-7 col-lg-9">
                 <h4 class="subtitle">How does Snyder Hemband work?</h4>
-                <p class="pb-3">Snyder Hemband is the system which allows a physician to place a gentle medical rubber band safely around the base of hemorrhoids. The soft rubber band generates the compression around the hemorrhoids reducing the
-                    blood supply which causes it to shrink and eventually fall off. It is a painless procedure with little discomfort occasionally. The banding is done above the dentate line, a section of rectum with a very low number of
-                    pain-sensitive nerves making the procedure painless. The rubber band is placed around the hemorrhoid in less than a minute. </p>
-                <div class="my-4">
-                    <img src="{{asset('img/hiw.png')}}" class="w-100" alt="">
-                </div>
+                <p class="pb-3">Using the Snyder HemBand, your physician will gently place a medical-grade rubber band around the base of your hemorrhoid. The soft rubber band generates compression around the hemorrhoid, reducing the blood supply, causing it to shrink and eventually fall off.</p>
             </div>
         </div>
     </div>
 </div>
-<div class="container py-5">
-    <div class="row">
-      <div class="col-lg-12 text-center">
-        <h4 class="subtitle mb-4 pb-3">After treatment Care</h4>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-6 mb-lg-5 mb-4">
-        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
-          <div class="me-lg-4 me-sm-3">
-            <img src="{{asset('img/treatment/treatment-1.svg')}}" width="70" alt="">
-          </div>
-          <div class="">
-            <h4 class="header">Work toward healthy bowel movements</h4>
-            <p>Maintain regularity of bowel movements and prevent constipation by following a diet as recommended by your physician. To promote better healing and stop hemorrhoids from forming again, it is vital that you keep your stool soft. Avoid straining during a bowel movement.</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6 mb-lg-5 mb-4">
-        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
-          <div class="me-lg-4 me-sm-3">
-            <img src="{{asset('img/treatment/treatment-2.svg')}}" width="50" alt="">
-          </div>
-          <div class="">
-            <h4 class="header">Monitor what you eat</h4>
-            <p>Follow your doctor’s directions. Drinking 8-10 glasses of water is important. A high-fiber diet that includes vegetables also is key. Your physician may suggest regular use of fiber supplements, and remember: You must drink plenty of fluids when you use fiber supplements.</p>
-          </div>
-        </div>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-6 mb-4">
-        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
-          <div class="me-lg-4 me-sm-3">
-            <img src="{{asset('img/treatment/treatment-3.svg')}}" width="60" alt="">
-          </div>
-          <div class="">
-            <h4 class="header">Be mindful of exercise</h4>
-            <p>After Snyder HemBand treatment, refrain from heavy lifting and strenuous exercise for the next 2-3 days. It’s also important to avoid sitting for long periods of time - you should stand up and walk every couple of hours. Maintain a regular exercise routine and a healthy weight to help avoid recurrence of hemorrhoids.</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6 mb-sm-4">
-        <div class="d-sm-flex d-center text-sm-start text-center align-items-start">
-          <div class="me-lg-4 me-sm-3">
-            <img src="{{asset('img/treatment/treatment-4.svg')}}" width="50" alt="">
-          </div>
-          <div class="">
-            <h4 class="header">Use medications carefully</h4>
-            <p>Continue to take your regular medications as prescribed. Check with your physician about medications that could cause constipation or diarrhea. Unless your doctor directs you to do so, do not insert medication inside your rectum.</p>
-          </div>
+<div class="py-5">
+    <div class="container">
+        <div class="row justify-content-center text-center">
+            <div class="col-xl-7 col-lg-9">
+                <h4 class="subtitle">Why is banding painless?</h4>
+                <p class="pb-3">Banding is done above the “dentate line”, a section of the rectum with a very low number of pain-sensitive nerves. It’s also very comfortable because it takes your doctor less than a minute to apply the rubber band.</p>
+                <p class="pb-3">The rubber band causes the hemorrhoid to shrink away and fall off during a bowel movement, typically within 24 hours. In most cases, you won’t even notice the rubber band and hemorrhoids falling off.</p>
+                <div class="pb-5">
+                  <img src="{{asset('img/hiw.jpg')}}" class='w-100' alt="">
+                </div>
+                <p><b>Learn what to expect after banding.</b> </p>
+                <a href="{{route('postCare')}}" class="btn btn-pry">Post-Treatment Care</a>
+            </div>
         </div>
-      </div>
     </div>
 </div>
 @endsection

+ 11 - 9
resources/views/layouts/app.blade.php

@@ -79,14 +79,16 @@
 
 @section('footer')
 <footer>
-      <div class="py-5" style="background-color: #F7F7F7;">
+      <div class="py-lg-5 py-3" style="background-color: #F7F7F7;">
         <div class="container">
-          <div class="d-lg-flex align-items-center w-100">
-            <div>
-              <h4 class="header m-0">Have any questions? <br class="d-md-none d-block"></h4>
-            </div>
-            <div class="px-4">
-              <a href="{{route('contact')}}" class="btn btn-outline-pry px-5 mt-lg-0 mt-3">Contact us</a>
+          <div class="row justify-content-center">
+            <div class="d-sm-flex justify-content-center text-sm-start text-center align-items-center w-100">
+              <div>
+                <h4 class="header m-0">Have any questions? <br class="d-md-none d-block"></h4>
+              </div>
+              <div class="ps-sm-4">
+                <a href="{{route('contact')}}" class="btn btn-outline-pry px-5 mt-sm-0 mt-3">Contact us</a>
+              </div>
             </div>
           </div>
         </div>
@@ -119,7 +121,7 @@
                 <p class="mb-4"><a href="#" class="text-white">Register</a></p>
               </div>
               <div class="col-lg-3 col-md-4">
-                <p class="mb-4"><a href="{{route('contact')}}" class="text-white">Contact form</a></p>
+                <p class="mb-4"><a href="{{route('contact')}}" class="text-white">Contact us</a></p>
                 <p class="mb-4"><a href="#" class="text-white">info@snyderhemband.org</a></p>
                 <p class="mb-4"><a href="#" class="text-white">+XXX XXX XXX</a></p>
               </div>
@@ -139,4 +141,4 @@
         </div>
       </div>
     </footer>
-@endsection
+@endsection

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

@@ -20,12 +20,12 @@
 <body>
     <div class="border-bottom">
         <div class="container">
-            <div class="d-flex align-items-center justify-content-between">
-              <div class="p-1">
-                <strong style="width:154px;line-height:3px;font-size:14px;">This site is intended for U.S. audiences only.</strong>
+            <div class="d-md-flex align-items-center justify-content-between">
+              <div class="p-md-1">
+                <strong style="line-height:3px;font-size:14px;">This site is intended for U.S. audiences only.</strong>
               </div>
-              <div class="text-end">
-                <a class="ms-3 text-dark" href="tel:(800) 290-9092">(800) 290-9092</a>
+              <div class="text-md-end">
+                <a class="text-dark" href="tel:(800) 290-9092">(800) 290-9092</a>
                 <span class="ms-3">|</span>
                 @yield('context-switch-link')
               </div>

+ 5 - 2
resources/views/layouts/physicians.blade.php

@@ -25,6 +25,9 @@
                     </div>
                     <div class="collapse navbar-collapse" id="navBar">
                         <ul class="navbar-nav ms-auto align-items-lg-center">
+                            <li class="nav-item">
+                                <a class="nav-link" href="{{ route('physicians.instructions-for-use') }}">Instructions</a>
+                            </li>
                             <li class="nav-item">
                                 <a class="nav-link" href="{{ route('physicians.practice-support') }}">Practice Support</a>
                             </li>
@@ -71,7 +74,7 @@
                 <p class="mb-4"><a href="{{route('physicians.practice-support')}}" class="text-white">Practice Support</a></p>
                 <p class="mb-4"><a href="{{route('physicians.order-products')}}" class="text-white">Order Products</a></p>
                 <p class="mb-4"><a href="{{route('physicians.fda-registration')}}" class="text-white">FDA Registration</a></p>
-                
+
               </div>
               <div class="col-lg-3 col-md-3 offset-lg-0 offset-md-1">
                 <p class="mb-4"><a href="#" class="text-white">For patients</a></p>
@@ -100,4 +103,4 @@
         </div>
       </div>
     </footer>
-@endsection
+@endsection

+ 2 - 0
routes/web.php

@@ -28,11 +28,13 @@ Route::post('/submit-contact-us', [AppController::class, 'submitContact'])->name
 
 Route::prefix('/physicians/')->name('physicians.')->group(function () {
     Route::get('/', [PhysiciansController::class, 'index'])->name('index');
+    Route::get('/instructions-for-use', [PhysiciansController::class, 'instructionsForUse'])->name('instructions-for-use');
     Route::get('/practice-support', [PhysiciansController::class, 'practiceSupport'])->name('practice-support');
     Route::get('/order-products', [PhysiciansController::class, 'orderProducts'])->name('order-products');
     Route::get('/fda-registration', [PhysiciansController::class, 'fdaRegistration'])->name('fda-registration');
     Route::get('/contact-us', [PhysiciansController::class, 'contactUs'])->name('contact-us');
 
     Route::get('/get-trained', [PhysiciansController::class, 'getTrained'])->name('get-trained');
+    Route::post('/submit-training-request', [PhysiciansController::class, 'submitTrainingRequest'])->name('submit-training-request');
     Route::get('/reimbursement-guide', [PhysiciansController::class, 'reimbursementGuide'])->name('reimbursement-guide');
 });