Эх сурвалжийг харах

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

JKR 2 жил өмнө
parent
commit
b97af5deb0

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

@@ -24,9 +24,24 @@ class PhysiciansController extends Controller
     public function practiceSupport(Request $request){
       return view('app.physicians.practice-support');
     }
+    public function practiceSupportReimbursement(Request $request){
+      return view('app.physicians.practice-support.reimbursement');
+    }
+    public function practiceSupportTraining(Request $request){
+      return view('app.physicians.practice-support.training');
+    }
     public function orderProducts(Request $request){
       return view('app.physicians.order-products');
     }
+    public function orderProductsLigators(Request $request){
+      return view('app.physicians.order-products.ligators');
+    }
+    public function orderProductsMarketing(Request $request){
+      return view('app.physicians.order-products.marketing');
+    }
+    public function orderProductsObp(Request $request){
+      return view('app.physicians.order-products.obp');
+    }
     public function fdaRegistration(Request $request){
       return view('app.physicians.fda-registration');
     }

+ 5 - 1
public/css/style.css

@@ -36,7 +36,7 @@ footer span {
 a {
   text-decoration: none;
   color: var(--pry-color);
-  font-size: 15px;
+  font-size: 17px;
 }
 p {
   font-size: 17px;
@@ -70,6 +70,10 @@ p {
 .breadcrumb-item {
   font-weight: 300;
 }
+.sublinks:hover, .sublinks.active {
+  color: #4b87ff;
+  text-decoration: underline;
+}
 .navbar {
   background-color: #ffffff;
 }

BIN
public/img/ligators.jpeg


BIN
public/img/marketing.jpeg


BIN
public/img/obp.jpeg


BIN
public/img/reimburse.jpg


+ 64 - 8
resources/views/app/physicians/contact-us.blade.php

@@ -12,23 +12,79 @@
         </nav>
     </div>
 </div>
-<div class="bg-grey py-5">
-  <div class="container py-lg-4">
+<div class="py-5">
+  <div class="container">
     <div class="row justify-content-center">
       <div class="col-lg-7 text-center">
-        <h5 class="subtitle">Contact Us</h5>
+        <h5 class="subtitle">Get In Touch</h5>
         <p>If you have questions about the Snyder HemBand, our training program, or anything else, please contact us anytime. We’ll get back to you as soon as possible, typically within 1 business day.</p>
         <p>If you are already a partner and need assistance, please contact one of the following departments:</p>
+        <p class="mb-1"><b>General Information and Ligator Orders: 800.660.2153 x 1011</b></p>
+        <p class="mb-1"><b>Practice Support for the CRH O’Regan System: 800.660.2153 x 0</b></p>
       </div>
     </div>
   </div>
 </div>
-<div class="container py-5">
-  <div class="row">
-    <div class="col-md-12">
-
+<div class="bg-light">
+  <div class="container py-5">
+    <div class="row justify-content-center">
+      <div class="col-lg-8">
+        <h5 class="header">Contact Us</h5>
+        <form class="" action="" method="post">
+          @csrf
+          <label for="">Full Name <span class="text-danger">*</span> </label>
+          <div class="row">
+            <div class="col-lg-4 form-group mb-4">
+              <select class="form-control rounded-0 py-3" required name="prefix">
+                <option value="">Select Prefix</option>
+                <option value="Dr.">Dr.</option>
+                <option value="Mr.">Mr.</option>
+                <option value="Mrs.">Mrs.</option>
+                <option value="Miss">Miss</option>
+                <option value="Ms.">Ms.</option>
+                <option value="Prof.">Prof.</option>
+              </select>
+              @error('prefix')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+            </div>
+            <div class="col-lg-4 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" required 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-4 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" required name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
+              @error('name_last')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+            </div>
+          </div>
+          <div class="form-group mb-4">
+            <label>Practice Name <span class="text-danger">*</span> </label>
+            <input type="text" class="form-control rounded-0 py-3" required name="practice_name" value="{{ old('practice_name') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Email <span class="text-danger">*</span> </label>
+            <input type="email" class="form-control rounded-0 py-3" required name="email" value="{{ old('email') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Phone <span class="text-danger">*</span> </label>
+            <input type="tel" class="form-control rounded-0 py-3" required phone name="phone" value="{{ old('phone') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Zip / Postal Code <span class="text-danger">*</span> </label>
+            <input type="text" class="form-control rounded-0 py-3" required phone name="zip" value="{{ old('zip') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>How Can We Help You?<span class="text-danger">*</span></label>
+            <textarea name="message" class="form-control rounded-0" required rows="6">{{ old('message') }}</textarea>
+          </div>
+          <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
+        </form>
+      </div>
     </div>
   </div>
 </div>
-
 @endsection

+ 31 - 6
resources/views/app/physicians/order-products.blade.php

@@ -12,22 +12,47 @@
         </nav>
     </div>
 </div>
+
 <div class="bg-grey py-5">
-  <div class="container py-lg-4">
+  <div class="container">
     <div class="row justify-content-center">
       <div class="col-lg-7 text-center">
-        <h5 class="subtitle">Order Products</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>
+        <h5 class="title m-0">Order Products</h5>
       </div>
     </div>
   </div>
 </div>
+
 <div class="container py-5">
   <div class="row">
-    <div class="col-md-12">
-        
+    <div class="col-lg-3">
+      @include('app.physicians.order-products.sidenav')
+    </div>
+    <div class="col-lg-8">
+      <h4 class="header">Convenient, Fast Supplies for Your Practice</h4>
+      <em>Get all your CRH O’Regan System materials here</em>
+      <p class="mt-4">Stock up on your practice’s supplies right here. You can order online, or via fax/email.</p>
+      <ul>
+        <li><a href="#">Order ligators</a> for use in performing the CRH O’Regan banding procedure</li>
+        <li><a href="#">Order marketing materials</a> – including brochures, table tents, post-colonoscopy tear-off pads, wall charts and more.</li>
+        <li><a href="#">Order OBP ANOSPEC anocopes</a> for diagnostics</li>
+      </ul>
+      <p>Have questions about our materials or need help ordering? Call 800.660.2153 ext. 1011 for assistance.</p>
+      <p>Not yet trained in the CRH O’Regan System? Get trained now</p>
+
+      <h5>Fax or Email for Ligator Orders Only</h5>
+      <p>To submit your order offline, please print and complete the form below.</p>
+      <a href="#"><img  src="{{asset('img/ligators.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
+
+      <h5 class="mt-lg-5 mt-4">Fax or Email for OBP ANOSPEC Anoscopes Only</h5>
+      <p>To submit your order offline, please print and complete the form below.</p>
+      <a href="#"><img  src="{{asset('img/obp.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
+
+      <h5 class="mt-lg-5 mt-4">Fax or Email for Fax or Email for OBP ANOSPEC Anoscopes Only Only</h5>
+      <p>To submit your order offline, please print and complete the form below.</p>
+      <a href="#"><img  src="{{asset('img/marketing.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
     </div>
   </div>
 </div>
 
-@endsection
+@endsection

+ 68 - 0
resources/views/app/physicians/order-products/ligators.blade.php

@@ -0,0 +1,68 @@
+@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"><a href="{{route('physicians.order-products')}}"><u>Order Products</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">Ligators</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+
+<div class="bg-grey py-5">
+  <div class="container">
+    <div class="row justify-content-center">
+      <div class="col-lg-7 text-center">
+        <h5 class="title m-0">Ligators</h5>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="container py-5">
+  <div class="row">
+    <div class="col-lg-3 d-lg-block d-none">
+      @include('app.physicians.order-products.sidenav')
+    </div>
+    <div class="col-lg-8">
+      <h4 class="header">Order Your CRH O’Regan Ligators Now</h4>
+      <p class="mt-4">All CRH-trained practices are eligible to order CRH O’Regan System ligators. You can order online, by phone (1.800.660.2153 ext. 0) or simply print out and fax or email your order form to us:</p>
+      <ul>
+        <li><a href="#">Order online</a></li>
+        <li><a href="#">Download an order form</a></li>
+      </ul>
+      <p>If your practice has not yet been trained on the use of the CRH O’Regan ligator and associated treatment protocols, call 800-660-2153 ext. 1011 to learn more, or <a href="#">fill out our training request form.</a> </p>
+      <div class="border bg-light p-4 mb-4">
+          <img src="{{asset('/img/snyder.png')}}" class="w-100" alt="">
+      </div>
+      <h5 class="header">About the CRH O’Regan Ligator</h5>
+      <p>The CRH O’Regan System is a single-use hemorrhoid banding ligator that utilizes a manual, gentle suction to draw the tissue of the hemorrhoid into the barrel of the ligator over which a small rubber band is placed – a procedure known as Rubber Band Ligation (RBL).</p>
+      <p>The CRH ligator, which improves upon conventional RBL, directly treats the root problem that hemorrhoids cause – the prolapse – and eliminates the painful symptoms, like itching and bleeding, which accompany it.</p>
+
+      <h5 class="mt-4">Comprehensive Training</h5>
+      <p><a href="#">CRH’s Medical Directors</a>, both board-certified general surgeons, have been training physicians across the United States to offer this patented, FDA-approved procedure since 2008.</p>
+      <p>Training is provided for the use of the ligator as well as for the diagnosis and treatment of related perianal care issues such as anal fissure and spasm.</p>
+
+      <h5 class="mt-4">Proven</h5>
+      <p>The CRH O’Regan System is proven to be 99% effective, with a 1% complication rate (pain and bleeding). Our ligator has also been used more than 1,000,000 times by over 3,000 doctors across the US.</p>
+
+      <h5 class="mt-4">Marketing and Operational Support</h5>
+      <p>As a CRH customer, you receive a turnkey program to ensure you have all of the support necessary to incorporate the procedure into your practice at no additional cost:</p>
+      <ul>
+        <li>Clinical forms</li>
+        <li>Patient education tools</li>
+        <li>Marketing materials</li>
+        <li>Staff training</li>
+        <li>24/7 clinical support via phone and email</li>
+        <li>Practice profile listing on our patient-facing website</li>
+      </ul>
+    </div>
+  </div>
+</div>
+
+@endsection

+ 40 - 0
resources/views/app/physicians/order-products/marketing.blade.php

@@ -0,0 +1,40 @@
+@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"><a href="{{route('physicians.order-products')}}"><u>Order Products</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">Marketing Materials</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+
+<div class="bg-grey py-5">
+  <div class="container">
+    <div class="row justify-content-center">
+      <div class="col-lg-7 text-center">
+        <h5 class="title m-0">Marketing Materials</h5>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="container py-5">
+  <div class="row">
+    <div class="col-lg-3 d-lg-block d-none">
+      @include('app.physicians.order-products.sidenav')
+    </div>
+    <div class="col-lg-8">
+      <h4 class="header">Marketing Services & Material</h4>
+      <p class="mt-4">We provide a wide array of valuable educational and marketing material designed to help your patients and colleagues understand the benefits of the CRH O’Regan System, and to drive new patients to your practice.</p>
+      <p>All materials are provided free of charge. Order online or by fax. For more information, please call 800.660.2153 ext. 1011.</p>
+    </div>
+  </div>
+</div>
+
+@endsection

+ 50 - 0
resources/views/app/physicians/order-products/obp.blade.php

@@ -0,0 +1,50 @@
+@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"><a href="{{route('physicians.order-products')}}"><u>Order Products</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">OBP Anoscopes</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+
+<div class="bg-grey py-5">
+  <div class="container">
+    <div class="row justify-content-center">
+      <div class="col-lg-7 text-center">
+        <h5 class="title m-0">OBP Anoscopes</h5>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="container py-5">
+  <div class="row">
+    <div class="col-lg-3 d-lg-block d-none">
+      @include('app.physicians.order-products.sidenav')
+    </div>
+    <div class="col-lg-8">
+      <h4 class="header">Order your OBP ANOSPEC Anoscopes</h4>
+      <p class="mt-4">OBP ANOSPEC anoscopes with built-in LED light source (used for diagnostic purposes) are now available for purchase directly through CRH.</p>
+      <p>The OBP ANOSPEC is:</p>
+      <ul>
+        <li>Single-use</li>
+        <li>Equipped with its own obturator</li>
+        <li>Equipped with its own built-in LED light source</li>
+        <li>Clear – offers 360 degree visibility</li>
+        <li>Available with slotted and beveled tips</li>
+      </ul>
+      <p class="mb-0"><a href="#">Order online</a></p>
+      <p class="mb-0"><a href="#">Download an order form</a></p>
+      <p class="mb-0"><a href="#">Product Brochure</a></p>
+    </div>
+  </div>
+</div>
+
+@endsection

+ 9 - 0
resources/views/app/physicians/order-products/sidenav.blade.php

@@ -0,0 +1,9 @@
+<?php
+$segment = Request::segment(3);
+ ?>
+<div class="mt-lg-4">
+  <p><a class="sublinks {{!$segment ? 'active' : ''}}" href="{{route('physicians.order-products')}}">- ORDER PRODUCTS</a></p>
+  <p><a class="sublinks {{$segment == 'ligators' ? 'active' : ''}}" href="{{route('physicians.order-products-ligators')}}">- LIGATORS</a></p>
+  <p><a class="sublinks {{$segment == 'marketing-materials' ? 'active' : ''}}" href="{{route('physicians.order-products-marketing')}}">- MARKETING MATERIALS</a></p>
+  <p><a class="sublinks {{$segment == 'obp' ? 'active' : ''}}" href="{{route('physicians.order-products-obp')}}">- OBP ANOSCOPES</a></p>
+</div>

+ 26 - 14
resources/views/app/physicians/practice-support.blade.php

@@ -25,24 +25,36 @@
 <div class="bg-light">
 <div class="container py-5">
     <div class="row justify-content-center">
-      <div class="col-lg-7 text-center">
-        <div class="steps py-5">
-          <div class="text-center mb-sm-0 mb-4">
-            <h4 class="text-pry"><i class="fal fa-chalkboard-teacher"></i></h4>
-            <p class="mt-3"><b>Training</b></p>
-            <p class="px-4">Clinical and staff training, online and in-person.</p>
+      <div class="col-lg-8">
+        <div class="p-xl-0">
+          <div class="box-2">
+            <div class="d-flex flex-column">
+              <h5 class="header ">Training</h5>
+              <p class="">Clinical and staff training, online and in-person.</p>
+              <a href="{{route('physicians.practice-support-training')}}" class="text-white d-block mt-auto text-end">Learn more <i class="ms-1 fal fa-angle-right"></i> </a>
+            </div>
           </div>
-          <div class="text-center mb-sm-0 mb-4">
-            <h4 class="text-pry"><i class="fal fa-clipboard-list-check"></i></h4>
-            <p class="mt-3"><b>Directory Listing</b></p>
-            <p class="px-4">Add your practice to our online directory.</p>
+        <div class="row m-xl-0 box-container">
+          <div class="col-xl-6 p-xl-0">
+            <div class="box-3">
+              <div class="d-flex flex-column">
+                <h5 class="header ">Directory Listing</h5>
+                <p>Add your practice to our online directory.</p>
+                <a href="#" class="text-white d-block mt-auto text-end">Learn more <i class="ms-1 fal fa-angle-right"></i> </a>
+              </div>
+            </div>
           </div>
-          <div class="text-center mb-sm-0 mb-4">
-            <h4 class="text-pry"><i class="fal fa-bolt"></i></h4>
-            <p class="mt-3"><b>Reimbursement Guide</b></p>
-            <p class="px-4">Learn how to reimburse for rubber band ligation.</p>
+          <div class="col-xl-6 p-xl-0">
+            <div class="box-4">
+              <div class="d-flex flex-column">
+                <h5 class="header ">Reimbursement Guide</h5>
+                <p>Learn how to reimburse for rubber band ligation.</p>
+                <a href="{{route('physicians.practice-support-reimbursement')}}" class="text-dark d-block mt-auto text-end">Learn more <i class="ms-1 fal fa-angle-right"></i> </a>
+              </div>
+            </div>
           </div>
         </div>
+        </div>
       </div>
     </div>
   </div>

+ 80 - 0
resources/views/app/physicians/practice-support/reimbursement.blade.php

@@ -0,0 +1,80 @@
+@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"><a href="{{route('physicians.practice-support')}}"><u>Practice Support</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">Reimbursement-Guide</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+<div class="py-5">
+  <div class="container py-lg-4">
+    <div class="row justify-content-center">
+      <div class="col-lg-5 text-start">
+        <h5 class="subtitle mb-4 text-pry">Hemorrhoid Banding CPT Code: A Quick Guide</h5>
+        <p>If you’re planning to add hemorrhoid banding as a service offered by your medical facility, then you’re going to need to learn the appropriate codes related to this procedure. Knowing the correct Current Procedural Terminology (CPT) codes can reduce confusion and streamline your office’s billing practices.</p>
+        <p>To get started, review the following hemorrhoid banding CPT code guide. It will walk you and your office staff through the ins and outs of coding and reimbursement for treatment with a hemorrhoid banding ligator.</p>
+      </div>
+      <div class="col-lg-6 offset-lg-1">
+        <img src="{{asset('img/reimburse.jpg')}}" class="w-100" alt="">
+      </div>
+    </div>
+  </div>
+</div>
+<div class="bg-light">
+<div class="container py-5">
+    <div class="row text-justify">
+      <div class="col-lg-6">
+        <div class="mb-4">
+          <h5 class="header">Primary Hemorrhoid Banding CPT Code</h5>
+          <p>The main hemorrhoid banding CPT code that you need to know is 46221. If you use a disposable ligator like the <a href="https://www.adlermicromed.com/al9000/the-adler-ligator-hemorrhoid-banding-information/">Adler ligator</a>, then that’s the code that you will use. The <a href="https://www.cookmedical.com/wp-content/uploads/2020/01/RG_ESC_50058_RE_202002.pdf">procedure description</a> that goes along with code 46221 is “Hemorrhoidectomy, internal, by rubber band ligation(s).”</p>
+          <p>You might think of a hemorrhoidectomy as a full surgical removal procedure that involves cutting or stitching. That’s not what rubber band ligation involves, of course. Even still, this code description makes sense since the intent of banding is to remove the hemorrhoid from the body.</p>
+        </div>
+        <div class="mb-4">
+          <h5 class="header">Additional CPT Codes to Know</h5>
+          <p>There are a few other CPT codes that can be used for hemorrhoid banding in some cases. The main situation in which you might need a different code is when ligation is performed with a flexible scope instead of a rigid one.</p>
+          <p>For example, when hemorrhoid banding is <a href="https://www.asge.org/docs/default-source/coding/colonoscopy_2018-coding-sheet.pdf?sfvrsn=3a2ca050_4">performed during a colonoscopy</a>, you should put down code 45298. The description for that code is “Colonoscopy, flexible; with band ligation(s) (eg, hemorrhoids)." If the accompanying procedure is a sigmoidoscopy, then the code is 45350. Its description is “Sigmoidoscopy, flexible; with band ligation(s) (eg, hemorrhoids).”</p>
+          <p>However, if the banding is performed with a rigid scope, you will stick with code 46221. Typically, anoscopy is considered <a href="https://www.inxmedical.com/wp-content/uploads/2017/02/Reimbursement-Guide-2016.pdf">part of the banding service</a> and not a separate charge. Billing separately for the scope should only be done if it has a distinct purpose, such as diagnosing a different condition.</p>
+          <p>If you have a situation in which it seems appropriate to list both the scoping and banding procedures, then you should use 46600 for anoscopy or 45300 for proctoscopy. For either one, including modifier 59 is essential.</p>
+        </div>
+        <div class="mb-4">
+          <h5 class="header">Office Visit Coding</h5>
+          <p>You may have a new patient who would benefit from immediate in-office hemorrhoid banding. In that case, you can charge for both the new-patient visit and the treatment procedure. It’s a good idea to add modifier 25 to increase the chances that the payer will accept both codes.</p>
+          <p>When an established patient comes to the office solely for hemorrhoid treatment, you should not bill separately for the visit. The time spent with the patient to discuss and treat the hemorrhoids is included in the 46221 code. You cannot add a separate evaluation and management (E/M) code in addition to the ligation one.</p>
+          <p>The exception to this rule is when a patient has more than one colorectal concern to discuss with you. Some of the people you see may be dealing with more than just hemorrhoids. If you use modifier 25, you can report codes for both conditions that you evaluate or treat that day.</p>
+          <p>Examples of additional issues that might qualify for separate billing include:</p>
+          <ul>
+            <li>Anal fissures</li>
+            <li>Bowel irregularities</li>
+            <li>Yeast infections</li>
+          </ul>
+        </div>
+      </div>
+      <div class="col-lg-6">
+        <div class="mb-4">
+          <h5 class="header">Multiple Procedures and Global Periods</h5>
+          <p>It’s common for a person with hemorrhoids to have multiple sites that require treatment. Some doctors place multiple bands during one ligation session. Others allow time for the patient to rest and recover before coming back for a second procedure.</p>
+          <p>One reason to spread the treatments out is to keep the process simple. For in-office procedures, you shouldn’t address more than two hemorrhoids at a time. If you plan to band three or more areas, it should be done in a surgical center with anesthesia. In addition, success rates may improve when only one hemorrhoid is banded at a time.</p>
+          <p>Billing is another reason to treat each hemorrhoid separately. Even if you band two hemorrhoids on the same day, you can only list the hemorrhoid banding CPT code 46221 once.</p>
+          <p>However, if you treat each hemorrhoid on a separate day, then you can bill for each of the sessions. If you want to increase your reimbursement, then having the patient come back in a few weeks is the way to go.</p>
+          <p>As you consider when to schedule the next ligation session, keep in mind that hemorrhoid ligation banding has a <a href="https://www.cms.gov/Outreach-and-Education/Medicare-Learning-Network-MLN/MLNProducts/downloads/GloballSurgery-ICN907166.pdf">global period of 10 days</a>. The countdown begins the day after surgery.</p>
+          <p>To ensure that you’ll be able to bill a second treatment separately, most experts recommend scheduling it two weeks after the first. 12 days should be the absolute minimum.</p>
+        </div>
+        <div class="mb-4">
+          <h5 class="header">Get Started with Hemorrhoid Ligation</h5>
+          <p>Learning the correct hemorrhoid banding CPT code for each situation is one of the most complicated things about this procedure. Compared to figuring out the right codes, the choice to use disposable hemorrhoid ligators in your practice should be an easy one.</p>
+          <p>For more information on the Adler Ligator (AL9000) and its many benefits, consult Adler MicroMed’s <a href="https://www.adlermicromed.com/al9000/">resource page</a> or <a href="{{route('physicians.contact-us')}}">reach out with your questions</a>.</p>
+          <p>As with all medical issues, your physician is the ultimate source as to what procedure best fits your needs. Discuss all options and get a second opinion if you have any doubts. These articles are intended to be a source of general information only.</p>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+@endsection

+ 100 - 0
resources/views/app/physicians/practice-support/training.blade.php

@@ -0,0 +1,100 @@
+@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"><a href="{{route('physicians.practice-support')}}"><u>Practice Support</u></a></li>
+                <li class="breadcrumb-item active" aria-current="page">Training</li>
+            </ol>
+        </nav>
+    </div>
+</div>
+<div class="py-5">
+  <div class="container py-lg-4">
+    <div class="row justify-content-center">
+      <div class="col-lg-5 text-start">
+        <h5 class="subtitle mb-4 text-pry">Become a trained physician</h5>
+        <p>Ready to get trained and begin offering the CRH O’Regan System to your patients? Fill out the form below and we’ll get in touch right away with more information and a customized presentation for your area. Required fields marked *.</p>
+        <p>If you are already a partner and need assistance, please contact one of the following departments:</p>
+
+        <p class="mb-1"><b>General Information and Ligator Orders: 800.660.2153 x 1011</b></p>
+        <p class="mb-1"><b>Practice Support for the CRH O’Regan System: 800.660.2153 x 0</b></p>
+        <p class="mb-1"><b>Email: <a href="mailto:info@crhmedcorp.com">info@crhmedcorp.com</a> </b></p>
+      </div>
+      <div class="col-lg-6 offset-lg-1">
+        <img src="{{asset('img/pc-top.png')}}" class="w-100" alt="">
+      </div>
+    </div>
+  </div>
+</div>
+<div class="bg-light">
+  <div class="container py-5">
+    <div class="row justify-content-center">
+      <div class="col-lg-8">
+        <h5 class="header">Schedule a Training Session</h5>
+        <form class="" action="" method="post">
+          @csrf
+          <label for="">Full Name <span class="text-danger">*</span> </label>
+          <div class="row">
+            <div class="col-lg-4 form-group mb-4">
+              <select class="form-control rounded-0 py-3" required name="prefix">
+                <option value="">Select Prefix</option>
+                <option value="Dr.">Dr.</option>
+                <option value="Mr.">Mr.</option>
+                <option value="Mrs.">Mrs.</option>
+                <option value="Miss">Miss</option>
+                <option value="Ms.">Ms.</option>
+                <option value="Prof.">Prof.</option>
+              </select>
+              @error('prefix')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+            </div>
+            <div class="col-lg-4 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" required 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-4 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" required name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
+              @error('name_last')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+            </div>
+          </div>
+          <div class="form-group mb-4">
+            <label>Practice Name <span>*</span> </label>
+            <input type="text" class="form-control rounded-0 py-3" required name="practice_name" value="{{ old('practice_name') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Email <span>*</span> </label>
+            <input type="email" class="form-control rounded-0 py-3" required name="email" value="{{ old('email') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Phone <span>*</span> </label>
+            <input type="tel" class="form-control rounded-0 py-3" required phone name="phone" value="{{ old('phone') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Zip / Postal Code <span>*</span> </label>
+            <input type="text" class="form-control rounded-0 py-3" required phone name="zip" value="{{ old('zip') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>How did you hear about Snyder HemBand?<span>*</span> </label>
+            <input type="text" class="form-control rounded-0 py-3" required phone name="outreach" value="{{ old('outreach') }}">
+          </div>
+          <div class="form-group mb-4">
+            <label>Comment</label>
+            <textarea name="message" class="form-control rounded-0" placeholder="Message" rows="6">{{ old('message') }}</textarea>
+          </div>
+          <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
+        </form>
+      </div>
+    </div>
+  </div>
+</div>
+@endsection

+ 0 - 33
resources/views/app/physicians/reimbursement-guide.blade.php

@@ -1,33 +0,0 @@
-@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">Reimbursement Guide</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">Reimbursement Guide</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>
-</div>
-<div class="container py-5">
-  <div class="row">
-    <div class="col-md-12">
-        
-    </div>
-  </div>
-</div>
-
-@endsection

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

@@ -73,14 +73,12 @@
                 <p class="mb-4"><a href="{{ route('index') }}" class="text-white">Snyder Hemband</a></p>
                 <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>
-                <p class="mb-4"><a href="#" class="text-white">For physicians</a></p>
-                <p class="mb-4"><a href="#" class="text-white">Login</a></p>
-                <p class="mb-4"><a href="#" class="text-white">Register</a></p>
+                <p class="mb-4"><a href="#" class="text-white">For Patients</a></p>
+                <p class="mb-4"><a href="{{route('physicians.get-trained')}}" class="text-white">Schedule For Training</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-4">
               <p class="mb-4"><a href="{{route('physicians.contact-us')}}" class="text-white">Contact Us</a></p>

+ 5 - 0
routes/web.php

@@ -30,7 +30,12 @@ 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('/practice-support/training', [PhysiciansController::class, 'practiceSupportTraining'])->name('practice-support-training');
+    Route::get('/practice-support/reimbursement-guide', [PhysiciansController::class, 'practiceSupportReimbursement'])->name('practice-support-reimbursement');
     Route::get('/order-products', [PhysiciansController::class, 'orderProducts'])->name('order-products');
+    Route::get('/order-products/ligators', [PhysiciansController::class, 'orderProductsLigators'])->name('order-products-ligators');
+    Route::get('/order-products/marketing-materials', [PhysiciansController::class, 'orderProductsMarketing'])->name('order-products-marketing');
+    Route::get('/order-products/obp', [PhysiciansController::class, 'orderProductsObp'])->name('order-products-obp');
     Route::get('/fda-registration', [PhysiciansController::class, 'fdaRegistration'])->name('fda-registration');
     Route::get('/contact-us', [PhysiciansController::class, 'contactUs'])->name('contact-us');