Peter Muturi преди 2 години
родител
ревизия
45e863b426

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

@@ -24,6 +24,12 @@ class PhysiciansController extends Controller
     public function practiceSupport(Request $request){
       return view('app.physicians.practice-support');
     }
+    public function practiceSupportReimburse(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');
     }

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

+ 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.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

+ 2 - 0
routes/web.php

@@ -30,6 +30,8 @@ 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, 'practiceSupportReimburse'])->name('reimbursement');
     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');