Samson 2 ani în urmă
părinte
comite
fd4ff2e909
31 a modificat fișierele cu 306 adăugiri și 132 ștergeri
  1. 3 0
      app/Http/Controllers/AppController.php
  2. 2 1
      app/Http/Controllers/Controller.php
  3. 15 15
      app/Http/Controllers/PhysiciansController.php
  4. 0 0
      public/css/nouislider.min.css
  5. 0 0
      public/js/nouislider.min.js
  6. 9 9
      public/sitemap.xml
  7. 3 3
      resources/views/app/find-a-clinic.blade.php
  8. 3 3
      resources/views/app/hcp/contact-us.blade.php
  9. 2 2
      resources/views/app/hcp/fda-registration.blade.php
  10. 7 7
      resources/views/app/hcp/get-trained.blade.php
  11. 6 6
      resources/views/app/hcp/index.blade.php
  12. 3 3
      resources/views/app/hcp/instructions-for-use.blade.php
  13. 6 6
      resources/views/app/hcp/order-products.blade.php
  14. 5 1
      resources/views/app/hcp/order-products/forms/place-order.blade.php
  15. 6 6
      resources/views/app/hcp/order-products/ligators.blade.php
  16. 5 5
      resources/views/app/hcp/order-products/marketing.blade.php
  17. 4 4
      resources/views/app/hcp/order-products/obp.blade.php
  18. 9 5
      resources/views/app/hcp/order-products/samples.blade.php
  19. 10 0
      resources/views/app/hcp/order-products/sidenav.blade.php
  20. 6 6
      resources/views/app/hcp/practice-support.blade.php
  21. 4 4
      resources/views/app/hcp/practice-support/directory-listing.blade.php
  22. 4 4
      resources/views/app/hcp/practice-support/reimbursement.blade.php
  23. 5 5
      resources/views/app/hcp/practice-support/training.blade.php
  24. 1 1
      resources/views/app/hcp/privacy.blade.php
  25. 1 1
      resources/views/app/hcp/terms.blade.php
  26. 3 3
      resources/views/app/index.blade.php
  27. 0 10
      resources/views/app/physicians/order-products/sidenav.blade.php
  28. 160 0
      resources/views/app/survey-questions.blade.php
  29. 2 2
      resources/views/layouts/app.blade.php
  30. 19 19
      resources/views/layouts/hcp.blade.php
  31. 3 1
      routes/web.php

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

@@ -43,6 +43,9 @@ class AppController extends Controller
     public function terms() {
     public function terms() {
       return view('app.terms');
       return view('app.terms');
     }
     }
+    public function surveyQuestions(){
+      return view('app.survey-questions');
+    }
     public function findAClinic() {
     public function findAClinic() {
       return view('app.find-a-clinic');
       return view('app.find-a-clinic');
     }
     }

+ 2 - 1
app/Http/Controllers/Controller.php

@@ -24,7 +24,8 @@ class Controller extends BaseController
             ['email' => config('app.adminEmailAddress'), 'name' => 'Hemband Admin'],
             ['email' => config('app.adminEmailAddress'), 'name' => 'Hemband Admin'],
             ['email' => 'salshah497@gmail.com', 'name' => 'Sal Shah'],
             ['email' => 'salshah497@gmail.com', 'name' => 'Sal Shah'],
             ['email' => 'hujaberi@gmail.com', 'name' => 'Hujaberi'],
             ['email' => 'hujaberi@gmail.com', 'name' => 'Hujaberi'],
-            ['email' => 'shawn.shah@hemband.com', 'name' => 'Shawn Shah']
+            ['email' => 'shawn.shah@hemband.com', 'name' => 'Shawn Shah'],
+            ['email' => 'robert.williams@hemband.com', 'name' => 'Robert Williams']
             
             
 
 
         ];    
         ];    

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

@@ -19,50 +19,50 @@ class PhysiciansController extends Controller
   use StringGeneratorTrait;
   use StringGeneratorTrait;
 
 
     public function index(Request $request) {
     public function index(Request $request) {
-      return view('app.physicians.index');
+      return view('app.hcp.index');
     }
     }
 
 
     public function instructionsForUse(Request $request){
     public function instructionsForUse(Request $request){
-      return view('app.physicians.instructions-for-use');
+      return view('app.hcp.instructions-for-use');
     }
     }
     public function practiceSupport(Request $request){
     public function practiceSupport(Request $request){
-      return view('app.physicians.practice-support');
+      return view('app.hcp.practice-support');
     }
     }
     public function practiceSupportReimbursement(Request $request){
     public function practiceSupportReimbursement(Request $request){
-      return view('app.physicians.practice-support.reimbursement');
+      return view('app.hcp.practice-support.reimbursement');
     }
     }
     public function practiceSupportTraining(Request $request){
     public function practiceSupportTraining(Request $request){
-      return view('app.physicians.practice-support.training');
+      return view('app.hcp.practice-support.training');
     }
     }
     public function practiceSupportDirectoryListing(Request $request){
     public function practiceSupportDirectoryListing(Request $request){
-      return view('app.physicians.practice-support.directory-listing');
+      return view('app.hcp.practice-support.directory-listing');
     }
     }
     public function orderProducts(Request $request){
     public function orderProducts(Request $request){
-      return view('app.physicians.order-products');
+      return view('app.hcp.order-products');
     }
     }
     public function orderProductsLigators(Request $request){
     public function orderProductsLigators(Request $request){
-      return view('app.physicians.order-products.ligators');
+      return view('app.hcp.order-products.ligators');
     }
     }
     public function orderProductsSamples(Request $request){
     public function orderProductsSamples(Request $request){
-      return view('app.physicians.order-products.samples');
+      return view('app.hcp.order-products.samples');
     }
     }
     public function orderProductsMarketing(Request $request){
     public function orderProductsMarketing(Request $request){
-      return view('app.physicians.order-products.marketing');
+      return view('app.hcp.order-products.marketing');
     }
     }
     public function orderProductsObp(Request $request){
     public function orderProductsObp(Request $request){
-      return view('app.physicians.order-products.obp');
+      return view('app.hcp.order-products.obp');
     }
     }
     public function fdaRegistration(Request $request){
     public function fdaRegistration(Request $request){
-      return view('app.physicians.fda-registration');
+      return view('app.hcp.fda-registration');
     }
     }
     public function contactUs(Request $request){
     public function contactUs(Request $request){
-      return view('app.physicians.contact-us');
+      return view('app.hcp.contact-us');
     }
     }
     public function getTrained(Request $request){
     public function getTrained(Request $request){
-      return view('app.physicians.get-trained');
+      return view('app.hcp.get-trained');
     }
     }
     public function reimbursementGuide(Request $request){
     public function reimbursementGuide(Request $request){
-      return view('app.physicians.reimbursement-guide');
+      return view('app.hcp.reimbursement-guide');
     }
     }
     public function privacy() {
     public function privacy() {
       return view('app.privacy');
       return view('app.privacy');

Fișier diff suprimat deoarece este prea mare
+ 0 - 0
public/css/nouislider.min.css


Fișier diff suprimat deoarece este prea mare
+ 0 - 0
public/js/nouislider.min.js


+ 9 - 9
public/sitemap.xml

@@ -13,7 +13,7 @@
   <priority>1.00</priority>
   <priority>1.00</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians</loc>
+  <loc>https://hemband.com/hcp</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.80</priority>
   <priority>0.80</priority>
 </url>
 </url>
@@ -68,42 +68,42 @@
   <priority>0.80</priority>
   <priority>0.80</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/get-trained</loc>
+  <loc>https://hemband.com/hcp/get-trained</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/practice-support</loc>
+  <loc>https://hemband.com/hcp/practice-support</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/contact-us</loc>
+  <loc>https://hemband.com/hcp/contact-us</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/practice-support/reimbursement-guide</loc>
+  <loc>https://hemband.com/hcp/practice-support/reimbursement-guide</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/privacy-policy</loc>
+  <loc>https://hemband.com/hcp/privacy-policy</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/terms-of-service</loc>
+  <loc>https://hemband.com/hcp/terms-of-service</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.64</priority>
   <priority>0.64</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/practice-support/training</loc>
+  <loc>https://hemband.com/hcp/practice-support/training</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.51</priority>
   <priority>0.51</priority>
 </url>
 </url>
 <url>
 <url>
-  <loc>https://hemband.com/physicians/practice-support/directory-listing</loc>
+  <loc>https://hemband.com/hcp/practice-support/directory-listing</loc>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <lastmod>2022-12-11T23:48:40+00:00</lastmod>
   <priority>0.51</priority>
   <priority>0.51</priority>
 </url>
 </url>

+ 3 - 3
resources/views/app/find-a-clinic.blade.php

@@ -15,9 +15,9 @@
   <div class="col-lg-5">
   <div class="col-lg-5">
       <h5 class="subtitle">Where can I get the Snyder HemBand System?</h5>
       <h5 class="subtitle">Where can I get the Snyder HemBand System?</h5>
       <p>You’re a simple rubber band away from long-lasting hemorrhoid treatment.</p>
       <p>You’re a simple rubber band away from long-lasting hemorrhoid treatment.</p>
-      <p>Over 1,000 physicians across the United States offer hemorrhoid banding to their patients.</p>
+      <p>Over 1,000 healthcare professionals across the United States offer hemorrhoid banding to their patients.</p>
       <div class="alert alert-warning p-3">
       <div class="alert alert-warning p-3">
-        <p>Are you a physician or practice administrator that currently offers Snyder HemBand? Please <a href="{{ route('physicians.contact-us') }}">contact us</a> to be added to our directory listing.</p>
+        <p>Are you a physician or practice administrator that currently offers Snyder HemBand? Please <a href="{{ route('hcp.contact-us') }}">contact us</a> to be added to our directory listing.</p>
       </div>
       </div>
       <!-- <div class="row mt-5">
       <!-- <div class="row mt-5">
         <div class="col-sm-6 mb-4">
         <div class="col-sm-6 mb-4">
@@ -37,7 +37,7 @@
             <a class="text-dark" href="mailto:{{ config('app.forPatientGeneralQuestionEmailAddress') }}">{{ config('app.forPatientGeneralQuestionEmailAddress') }}</a> <br>
             <a class="text-dark" href="mailto:{{ config('app.forPatientGeneralQuestionEmailAddress') }}">{{ config('app.forPatientGeneralQuestionEmailAddress') }}</a> <br>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
           </div>
           </div>
-          <h5 class="mb-2">For physicians</h5>
+          <h5 class="mb-2">For healthcare professionals</h5>
           <div class="mb-4">
           <div class="mb-4">
             <a class="text-dark" href="mailto:phy@snyderhemband.com">phy@snyderhemband.com</a> <br>
             <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>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>

+ 3 - 3
resources/views/app/physicians/contact-us.blade.php → resources/views/app/hcp/contact-us.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Contact Us</li>
                 <li class="breadcrumb-item active" aria-current="page">Contact Us</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -17,7 +17,7 @@
       <div class="col-lg-8 bg-grey p-lg-5 p-4" style="border-bottom:7px solid var(--pry-color);">
       <div class="col-lg-8 bg-grey p-lg-5 p-4" style="border-bottom:7px solid var(--pry-color);">
         <h5 class="subtitle mb-3">Get In Touch</h5>
         <h5 class="subtitle mb-3">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 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>
-        <form class="mt-4" action="{{ route('physicians.submit-contact-us') }}" method="post" autocomplete="off">
+        <form class="mt-4" action="{{ route('hcp.submit-contact-us') }}" method="post" autocomplete="off">
           @csrf
           @csrf
 
 
           @if(session('success'))
           @if(session('success'))

+ 2 - 2
resources/views/app/physicians/fda-registration.blade.php → resources/views/app/hcp/fda-registration.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">FDA Registration</li>
                 <li class="breadcrumb-item active" aria-current="page">FDA Registration</li>
             </ol>
             </ol>
         </nav>
         </nav>

+ 7 - 7
resources/views/app/physicians/get-trained.blade.php → resources/views/app/hcp/get-trained.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
     <nav class="mb-0">
     <nav class="mb-0">
       <ol class="breadcrumb">
       <ol class="breadcrumb">
         <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
         <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
         <li class="breadcrumb-item active" aria-current="page">Get Trained</li>
         <li class="breadcrumb-item active" aria-current="page">Get Trained</li>
       </ol>
       </ol>
     </nav>
     </nav>
@@ -15,8 +15,8 @@
 <div class="container py-5 my-4">
 <div class="container py-5 my-4">
   <div class="row">
   <div class="row">
     <div class="col-lg-5">
     <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>
+      <h5 class="subtitle">Schedule 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 healthcare professionals, 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="row mt-5">
         <div class="col-sm-6 mb-4">
         <div class="col-sm-6 mb-4">
@@ -36,7 +36,7 @@
             <a class="text-dark" href="mailto:{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}">{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}</a> <br>
             <a class="text-dark" href="mailto:{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}">{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}</a> <br>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
           </div>
           </div>
-          <h5 class="mb-2">For physicians</h5>
+          <h5 class="mb-2">For Healthcare Professionals</h5>
           <div class="mb-4">
           <div class="mb-4">
             <a class="text-dark" href="mailto:phy@snyderhemband.com">phy@snyderhemband.com</a> <br>
             <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>
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
@@ -45,9 +45,9 @@
       </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);">
     <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>
+      <h4 class="subtitle">Schedule Training</h4>
       <p class="mb-4">Fill out the form below to schedule a personalized training session with our team of experts. </p>
       <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" autocomplete="off">
+      <form class="" action="{{ route('hcp.submit-training-request') }}" method="post" autocomplete="off">
         @csrf
         @csrf
         <div class="row">
         <div class="row">
           <div class="col-12">
           <div class="col-12">

+ 6 - 6
resources/views/app/physicians/index.blade.php → resources/views/app/hcp/index.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light border-bottom">
 <div class="bg-light border-bottom">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
-                <li class="breadcrumb-item active" aria-current="page">Physicians</li>
+                <li class="breadcrumb-item active" aria-current="page">Healthcare Professionals</li>
             </ol>
             </ol>
         </nav>
         </nav>
     </div>
     </div>
@@ -23,8 +23,8 @@
                         <p class="mb-3">The SNYDER HemBand makes outpatient banding easier than ever.</p>
                         <p class="mb-3">The SNYDER HemBand makes outpatient banding easier than ever.</p>
                         <p class="mb-3">Get trained in less than 1 hour.</p>
                         <p class="mb-3">Get trained in less than 1 hour.</p>
                         <div class="d-sm-flex align-items-center my-4">
                         <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">Get Trained</a>
+                            <a href="{{ route('hcp.practice-support') }}" class="btn btn-pry">Learn More</a>
+                            <a href="{{ route('hcp.get-trained') }}" class="btn btn-outline-pry ms-sm-4 ms-0">Get Trained</a>
                         </div>
                         </div>
                     </div>
                     </div>
                 </div>
                 </div>
@@ -77,7 +77,7 @@
       <div class="box-1 h-100">
       <div class="box-1 h-100">
         <div class="d-flex flex-column">
         <div class="d-flex flex-column">
           <h5 class="subtitle mb-5">Complimentary Training & Consultative Services</h5>
           <h5 class="subtitle mb-5">Complimentary Training & Consultative Services</h5>
-            <p>Founded by physicians, for physicians - our team is committed to helping your clinic be a hemorrhoid treatment center of excellence in your community.</p>
+            <p>Founded by Healthcare Professionals, for Healthcare Professionals - our team is committed to helping your clinic be a hemorrhoid treatment center of excellence in your community.</p>
             <p>This requires a comprehensive approach of physician training, staff training, and marketing best-practices. Whether you are new to HemBand, or are an existing customer, contact us today to schedule a free consultation.</p>
             <p>This requires a comprehensive approach of physician training, staff training, and marketing best-practices. Whether you are new to HemBand, or are an existing customer, contact us today to schedule a free consultation.</p>
         </div>
         </div>
       </div>
       </div>
@@ -88,7 +88,7 @@
           <h5 class="header mb-5">Reimbursement Guide</h5>
           <h5 class="header mb-5">Reimbursement Guide</h5>
           <p class="mb-4">Billing for hemorrhoid banding is simple using CPT code 46221.</p>
           <p class="mb-4">Billing for hemorrhoid banding is simple using CPT code 46221.</p>
           <p class="mb-4">It can be billed along with an office visit or consult, without affecting reimbursement of the visit or consult.</p>
           <p class="mb-4">It can be billed along with an office visit or consult, without affecting reimbursement of the visit or consult.</p>
-          <a href="{{ route('physicians.practice-support-reimbursement') }}" class="text-white d-block mt-auto text-end">Learn more <i class="ms-1 fal fa-angle-right"></i> </a>
+          <a href="{{ route('hcp.practice-support-reimbursement') }}" 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>
     </div>
     </div>

+ 3 - 3
resources/views/app/physicians/instructions-for-use.blade.php → resources/views/app/hcp/instructions-for-use.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Instructions</li>
                 <li class="breadcrumb-item active" aria-current="page">Instructions</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -40,7 +40,7 @@
 
 
       <h5 class="header mt-5">Cautions:</h5>
       <h5 class="header mt-5">Cautions:</h5>
       <ul>
       <ul>
-        <li>Federal law restricts sale of this device to physicians only.</li>
+        <li>Federal law restricts sale of this device to Healthcare Professionals only.</li>
         <li>The Synder HemBand Ligator is designed for single-use 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>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>
         <li>Do not use this device other than for the indicated use.</li>

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

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Order Products</li>
                 <li class="breadcrumb-item active" aria-current="page">Order Products</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -26,14 +26,14 @@
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-3 d-lg-block d-none">
     <div class="col-lg-3 d-lg-block d-none">
-      @include('app.physicians.order-products.sidenav')
+      @include('app.hcp.order-products.sidenav')
     </div>
     </div>
     <div class="col-lg-8">
     <div class="col-lg-8">
       <p>The Snyder HemBand System offers a suite of products to provide comprehensive hemorrhoid treatment for your practice. Click the buttons below to learn more about what we offer.</p>
       <p>The Snyder HemBand System offers a suite of products to provide comprehensive hemorrhoid treatment for your practice. Click the buttons below to learn more about what we offer.</p>
       <div class="d-md-flex">
       <div class="d-md-flex">
-        <a href="{{route('physicians.order-products-ligators')}}" class="d-flex align-items-center justify-content-center h-auto text-center text-white box-1 w-100">Ligators</a>
-        <a href="{{route('physicians.order-products-marketing')}}" class="d-flex align-items-center justify-content-center h-auto text-center text-white box-3 w-100">Marketing Materials</a>
-        <a href="{{route('physicians.order-products-obp')}}" class="d-flex align-items-center justify-content-center h-auto text-center box-4 w-100">Anoscopes</a>
+        <a href="{{route('hcp.order-products-ligators')}}" class="d-flex align-items-center justify-content-center h-auto text-center text-white box-1 w-100">Ligators</a>
+        <a href="{{route('hcp.order-products-marketing')}}" class="d-flex align-items-center justify-content-center h-auto text-center text-white box-3 w-100">Marketing Materials</a>
+        <a href="{{route('hcp.order-products-obp')}}" class="d-flex align-items-center justify-content-center h-auto text-center box-4 w-100">Anoscopes</a>
       </div>
       </div>
 
 
     </div>
     </div>

+ 5 - 1
resources/views/app/physicians/order-products/forms/place-order.blade.php → resources/views/app/hcp/order-products/forms/place-order.blade.php

@@ -1,5 +1,9 @@
 <div class="bg-light border p-4 mb-4" id="formComponent">
 <div class="bg-light border p-4 mb-4" id="formComponent">
+<<<<<<< HEAD:resources/views/app/physicians/order-products/forms/place-order.blade.php
     <form class="" action="{{ route('physicians.submit-order-ligators') }}" method="post" autocomplete="off" id="order-form">
     <form class="" action="{{ route('physicians.submit-order-ligators') }}" method="post" autocomplete="off" id="order-form">
+=======
+    <form class="" action="{{ route('hcp.submit-order-ligators') }}" method="post" autocomplete="off">
+>>>>>>> 3d53296fc7a68d701f16659fd567d9ef7d35855a:resources/views/app/hcp/order-products/forms/place-order.blade.php
         @csrf
         @csrf
         <div class="row">
         <div class="row">
             <div class="col-12">
             <div class="col-12">
@@ -232,7 +236,7 @@
                         <p>Are you sure you want to clear this form?</p>
                         <p>Are you sure you want to clear this form?</p>
                         <div class="">
                         <div class="">
                             <button type="button" class="btn btn-outline-dark me-2 px-4" data-bs-dismiss="modal">No</button>
                             <button type="button" class="btn btn-outline-dark me-2 px-4" data-bs-dismiss="modal">No</button>
-                            <a href="{{route('physicians.order-products-ligators')}}" class="btn btn-danger px-4">Yes</a>
+                            <a href="{{route('hcp.order-products-ligators')}}" class="btn btn-danger px-4">Yes</a>
                         </div>
                         </div>
                     </div>
                     </div>
                 </div>
                 </div>

+ 6 - 6
resources/views/app/physicians/order-products/ligators.blade.php → resources/views/app/hcp/order-products/ligators.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
     <nav class="mb-0">
     <nav class="mb-0">
       <ol class="breadcrumb">
       <ol class="breadcrumb">
         <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
         <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+        <li class="breadcrumb-item"><a href="{{route('hcp.order-products')}}"><u>Order Products</u></a></li>
         <li class="breadcrumb-item active" aria-current="page">Ligators</li>
         <li class="breadcrumb-item active" aria-current="page">Ligators</li>
       </ol>
       </ol>
     </nav>
     </nav>
@@ -27,17 +27,17 @@
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-3 d-lg-block d-none">
     <div class="col-lg-3 d-lg-block d-none">
-      @include('app.physicians.order-products.sidenav')
+      @include('app.hcp.order-products.sidenav')
     </div>
     </div>
     <div class="col-lg-8">
     <div class="col-lg-8">
       <h4 class="header">Order Snyder HemBand Ligators Today</h4>
       <h4 class="header">Order Snyder HemBand Ligators Today</h4>
       <p class="mt-3 mb-4">If you are a licensed healthcare practitioner in the United States, you’re eligible to order the Snyder HemBand using this online form. You may also use <u><a href="{{asset('order_form.pdf')}}" target="_blank">this PDF-based form</a></u> to order via fax or email.</p>
       <p class="mt-3 mb-4">If you are a licensed healthcare practitioner in the United States, you’re eligible to order the Snyder HemBand using this online form. You may also use <u><a href="{{asset('order_form.pdf')}}" target="_blank">this PDF-based form</a></u> to order via fax or email.</p>
 
 
-     @include('app.physicians.order-products.forms.place-order')
+     @include('app.hcp.order-products.forms.place-order')
 
 
       <p>Need training? We're here to help. We can arrange virtual or in-person training sessions for both healthcare providers and members of the support staff.</p>
       <p>Need training? We're here to help. We can arrange virtual or in-person training sessions for both healthcare providers and members of the support staff.</p>
       <div class="text-center my-4">
       <div class="text-center my-4">
-        <a href="{{route('physicians.get-trained')}}" class="btn btn-success btn-lg rounded-0 px-5 py-2">Schedule Training</a>
+        <a href="{{route('hcp.get-trained')}}" class="btn btn-success btn-lg rounded-0 px-5 py-2">Schedule Training</a>
       </div>
       </div>
 
 
       <h5 class="header">About our Ligator</h5>
       <h5 class="header">About our Ligator</h5>

+ 5 - 5
resources/views/app/physicians/order-products/marketing.blade.php → resources/views/app/hcp/order-products/marketing.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('hcp.order-products')}}"><u>Order Products</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Marketing Materials</li>
                 <li class="breadcrumb-item active" aria-current="page">Marketing Materials</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -27,14 +27,14 @@
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-3 d-lg-block d-none">
     <div class="col-lg-3 d-lg-block d-none">
-      @include('app.physicians.order-products.sidenav')
+      @include('app.hcp.order-products.sidenav')
     </div>
     </div>
     <div class="col-lg-8">
     <div class="col-lg-8">
       <h4 class="header">Marketing Materials for Your Practice</h4>
       <h4 class="header">Marketing Materials for Your Practice</h4>
       <p class="mt-4">We know that marketing materials are a huge asset in helping patients and staff understand the Snyder HemBand procedure. Because of this, we’re happy to provide a variety of marketing materials at no cost to you or your practice.</p>
       <p class="mt-4">We know that marketing materials are a huge asset in helping patients and staff understand the Snyder HemBand procedure. Because of this, we’re happy to provide a variety of marketing materials at no cost to you or your practice.</p>
       <p>To place an order, please fill out the form below or submit an order form via fax or email <a href="mailto:support@hemband.com">support@hemband.com</a>.</p>
       <p>To place an order, please fill out the form below or submit an order form via fax or email <a href="mailto:support@hemband.com">support@hemband.com</a>.</p>
       <div class="bg-light p-4">
       <div class="bg-light p-4">
-        <form class="" action="{{ route('physicians.submit-order-products-marketing') }}" method="post" autocomplete="off">
+        <form class="" action="{{ route('hcp.submit-order-products-marketing') }}" method="post" autocomplete="off">
           @csrf
           @csrf
           <div class="row">
           <div class="row">
             <div class="col-12">
             <div class="col-12">

+ 4 - 4
resources/views/app/physicians/order-products/obp.blade.php → resources/views/app/hcp/order-products/obp.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('hcp.order-products')}}"><u>Order Products</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Anoscopes</li>
                 <li class="breadcrumb-item active" aria-current="page">Anoscopes</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -27,7 +27,7 @@
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-3 d-lg-block d-none">
     <div class="col-lg-3 d-lg-block d-none">
-      @include('app.physicians.order-products.sidenav')
+      @include('app.hcp.order-products.sidenav')
     </div>
     </div>
     <div class="col-lg-8">
     <div class="col-lg-8">
       <h4 class="header">Order your Anoscopes with Snyder HemBand</h4>
       <h4 class="header">Order your Anoscopes with Snyder HemBand</h4>

+ 9 - 5
resources/views/app/physicians/order-products/samples.blade.php → resources/views/app/hcp/order-products/samples.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light d-lg-block d-none">
 <div class="bg-light d-lg-block d-none">
@@ -6,8 +6,8 @@
     <nav class="mb-0">
     <nav class="mb-0">
       <ol class="breadcrumb">
       <ol class="breadcrumb">
         <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
         <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+        <li class="breadcrumb-item"><a href="{{route('hcp.order-products')}}"><u>Order Products</u></a></li>
         <li class="breadcrumb-item active" aria-current="page">Request Samples</li>
         <li class="breadcrumb-item active" aria-current="page">Request Samples</li>
       </ol>
       </ol>
     </nav>
     </nav>
@@ -27,7 +27,7 @@
 <div class="container py-5">
 <div class="container py-5">
   <div class="row">
   <div class="row">
     <div class="col-lg-3 d-lg-block d-none">
     <div class="col-lg-3 d-lg-block d-none">
-      @include('app.physicians.order-products.sidenav')
+      @include('app.hcp.order-products.sidenav')
     </div>
     </div>
     <div class="col-lg-8">
     <div class="col-lg-8">
       <div class="d-flex flex-column">
       <div class="d-flex flex-column">
@@ -40,7 +40,11 @@
         </div>
         </div>
       </div>
       </div>
       <div class="bg-light border p-4 mb-4" id="formComponent">
       <div class="bg-light border p-4 mb-4" id="formComponent">
+<<<<<<< HEAD:resources/views/app/physicians/order-products/samples.blade.php
           <form class="" id="sample-request-form" action="{{ route('physicians.submit-request-samples') }}" method="post" autocomplete="off">
           <form class="" id="sample-request-form" action="{{ route('physicians.submit-request-samples') }}" method="post" autocomplete="off">
+=======
+          <form class="" action="{{ route('hcp.submit-request-samples') }}" method="post" autocomplete="off">
+>>>>>>> 3d53296fc7a68d701f16659fd567d9ef7d35855a:resources/views/app/hcp/order-products/samples.blade.php
               @csrf
               @csrf
               <div class="row">
               <div class="row">
                   <div class="col-12">
                   <div class="col-12">
@@ -201,7 +205,7 @@
                               <p>Are you sure you want to clear this form?</p>
                               <p>Are you sure you want to clear this form?</p>
                               <div class="">
                               <div class="">
                                   <button type="button" class="btn btn-outline-dark me-2 px-4" data-bs-dismiss="modal">No</button>
                                   <button type="button" class="btn btn-outline-dark me-2 px-4" data-bs-dismiss="modal">No</button>
-                                  <a href="{{route('physicians.order-products-ligators')}}" class="btn btn-danger px-4">Yes</a>
+                                  <a href="{{route('hcp.order-products-ligators')}}" class="btn btn-danger px-4">Yes</a>
                               </div>
                               </div>
                           </div>
                           </div>
                       </div>
                       </div>

+ 10 - 0
resources/views/app/hcp/order-products/sidenav.blade.php

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

+ 6 - 6
resources/views/app/physicians/practice-support.blade.php → resources/views/app/hcp/practice-support.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,7 +6,7 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Practice Support</li>
                 <li class="breadcrumb-item active" aria-current="page">Practice Support</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -17,7 +17,7 @@
     <div class="row justify-content-center">
     <div class="row justify-content-center">
       <div class="col-lg-7 text-center">
       <div class="col-lg-7 text-center">
         <h5 class="subtitle mb-4 text-pry">Your Home for Snyder HemBand Support</h5>
         <h5 class="subtitle mb-4 text-pry">Your Home for Snyder HemBand Support</h5>
-        <p>Check out our support documents for Snyder HemBand-trained physicians and staff. Whatever you need to support your practice in hemorrhoid banding, from clinical and staff training, symptom questionnaire forms, patient fliers, and more can be found here.</p>
+        <p>Check out our support documents for Snyder HemBand-trained Healthcare Professionals and staff. Whatever you need to support your practice in hemorrhoid banding, from clinical and staff training, symptom questionnaire forms, patient fliers, and more can be found here.</p>
       </div>
       </div>
     </div>
     </div>
   </div>
   </div>
@@ -31,7 +31,7 @@
             <div class="d-flex flex-column">
             <div class="d-flex flex-column">
               <h5 class="header ">Training</h5>
               <h5 class="header ">Training</h5>
               <p class="">Clinical and staff training, online and in-person.</p>
               <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>
+              <a href="{{route('hcp.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>
           </div>
         <div class="row m-xl-0 box-container">
         <div class="row m-xl-0 box-container">
@@ -40,7 +40,7 @@
               <div class="d-flex flex-column">
               <div class="d-flex flex-column">
                 <h5 class="header ">Directory Listing</h5>
                 <h5 class="header ">Directory Listing</h5>
                 <p>Add your practice to our online directory.</p>
                 <p>Add your practice to our online directory.</p>
-                <a href="{{route('physicians.practice-support-directory')}}" class="text-white d-block mt-auto text-end">Learn more <i class="ms-1 fal fa-angle-right"></i> </a>
+                <a href="{{route('hcp.practice-support-directory')}}" 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>
           </div>
           </div>
@@ -49,7 +49,7 @@
               <div class="d-flex flex-column">
               <div class="d-flex flex-column">
                 <h5 class="header ">Reimbursement Guide</h5>
                 <h5 class="header ">Reimbursement Guide</h5>
                 <p>Learn how to reimburse for rubber band ligation.</p>
                 <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>
+                <a href="{{route('hcp.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>

+ 4 - 4
resources/views/app/physicians/practice-support/directory-listing.blade.php → resources/views/app/hcp/practice-support/directory-listing.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('hcp.practice-support')}}"><u>Practice Support</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Directory Listing</li>
                 <li class="breadcrumb-item active" aria-current="page">Directory Listing</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -28,7 +28,7 @@
     <div class="row justify-content-center">
     <div class="row justify-content-center">
       <div class="col-lg-8">
       <div class="col-lg-8">
         <h5 class="header mb-4">Complete the form below</h5>
         <h5 class="header mb-4">Complete the form below</h5>
-        <form class="" action="{{ route('physicians.submit-practice-support-directory-listing-request') }}" method="post" autocomplete="off">
+        <form class="" action="{{ route('hcp.submit-practice-support-directory-listing-request') }}" method="post" autocomplete="off">
           @csrf
           @csrf
           <div class="row">
           <div class="row">
             <div class="col-12">
             <div class="col-12">

+ 4 - 4
resources/views/app/physicians/practice-support/reimbursement.blade.php → resources/views/app/hcp/practice-support/reimbursement.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('hcp.practice-support')}}"><u>Practice Support</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Reimbursement-Guide</li>
                 <li class="breadcrumb-item active" aria-current="page">Reimbursement-Guide</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -74,7 +74,7 @@ For questions regarding billing, please contact our support team at: <a href="te
         <div class="mb-4">
         <div class="mb-4">
           <h5 class="header">Get Started with Hemorrhoid Ligation</h5>
           <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>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>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('hcp.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>
           <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>

+ 5 - 5
resources/views/app/physicians/practice-support/training.blade.php → resources/views/app/hcp/practice-support/training.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 
 
 <div class="bg-light">
 <div class="bg-light">
@@ -6,8 +6,8 @@
         <nav class="mb-0">
         <nav class="mb-0">
             <ol class="breadcrumb">
             <ol class="breadcrumb">
                 <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
                 <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"><a href="{{route('hcp.index')}}"><u>Healthcare Professionals</u></a></li>
+                <li class="breadcrumb-item"><a href="{{route('hcp.practice-support')}}"><u>Practice Support</u></a></li>
                 <li class="breadcrumb-item active" aria-current="page">Training</li>
                 <li class="breadcrumb-item active" aria-current="page">Training</li>
             </ol>
             </ol>
         </nav>
         </nav>
@@ -18,7 +18,7 @@
     <div class="row justify-content-center">
     <div class="row justify-content-center">
       <div class="col-lg-5 text-start">
       <div class="col-lg-5 text-start">
         <h5 class="subtitle mb-4 text-pry">Become a HemBand-trained physician today.</h5>
         <h5 class="subtitle mb-4 text-pry">Become a HemBand-trained physician today.</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 to ensure best-in-class education.</p>
+        <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 Healthcare Professionals, 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 to ensure best-in-class education.</p>
         <p>Fill out the form below to schedule a personalized training session with our team of experts. </p>
         <p>Fill out the form below to schedule a personalized training session with our team of experts. </p>
       </div>
       </div>
       <div class="col-lg-6 offset-lg-1">
       <div class="col-lg-6 offset-lg-1">
@@ -32,7 +32,7 @@
     <div class="row justify-content-center">
     <div class="row justify-content-center">
       <div class="col-lg-8">
       <div class="col-lg-8">
         <h5 class="header mb-4">Schedule a Session</h5>
         <h5 class="header mb-4">Schedule a Session</h5>
-        <form class="" action="{{ route('physicians.submit-training-request') }}" method="post" autocomplete="off">
+        <form class="" action="{{ route('hcp.submit-training-request') }}" method="post" autocomplete="off">
           @csrf
           @csrf
           <div class="row">
           <div class="row">
             <div class="col-12">
             <div class="col-12">

+ 1 - 1
resources/views/app/physicians/privacy.blade.php → resources/views/app/hcp/privacy.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 <div class="bg-light">
 <div class="bg-light">
   <div class="container pt-3">
   <div class="container pt-3">

+ 1 - 1
resources/views/app/physicians/terms.blade.php → resources/views/app/hcp/terms.blade.php

@@ -1,4 +1,4 @@
-@extends('layouts.physicians')
+@extends('layouts.hcp')
 @section('content')
 @section('content')
 <div class="bg-light">
 <div class="bg-light">
   <div class="container pt-3">
   <div class="container pt-3">

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

@@ -83,7 +83,7 @@
           <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>
           <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>
           <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>
+          <p class="border-bottom pb-4">With thousands of healthcare professionals 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>
           <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>
           <p class="border-bottom pb-4">HemBand treatment is covered by most insurance plans, including Medicare, Medicaid, and TriCare.</p>
@@ -151,8 +151,8 @@
 
 
 <div class="container py-xl-5 py-4 d-none">
 <div class="container py-xl-5 py-4 d-none">
   <div class="d-md-flex align-items-center justify-content-between mb-4 pb-3 border-bottom">
   <div class="d-md-flex align-items-center justify-content-between mb-4 pb-3 border-bottom">
-    <h4 class="subtitle mb-0 mb-2">What physicians have to say</h4>
-    <a href="#">For Physicians <i class="ms-1 fal fa-angle-right"></i> </a>
+    <h4 class="subtitle mb-0 mb-2">What healthcare professionals have to say</h4>
+    <a href="#">For Healthcare Professionals <i class="ms-1 fal fa-angle-right"></i> </a>
   </div>
   </div>
   <div class="row">
   <div class="row">
     <div class="col-xl-6">
     <div class="col-xl-6">

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

@@ -1,10 +0,0 @@
-<?php
-$segment = Request::segment(3);
- ?>
-<div class="mt-lg-4">
-  <p><a class="sublinks {{$segment == 'request-samples' ? 'active' : ''}}" href="{{route('physicians.order-products-samples')}}">- REQUEST SAMPLES</a></p>
-  <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')}}">- ANOSCOPES</a></p>
-</div>

+ 160 - 0
resources/views/app/survey-questions.blade.php

@@ -0,0 +1,160 @@
+@extends('layouts.app')
+@section('content')
+<link rel="stylesheet" href="{{ asset('css/nouislider.min.css') }}" />
+<script src="{{ asset('js/nouislider.min.js') }}"></script>
+
+<style>
+    .form-group label {
+        font-weight: 500;
+    }
+
+    .form-group label span {
+        font-weight: 400;
+    }
+</style>
+<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">Survey Questions</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="subtitle">Survey Questions</h5>
+            </div>
+        </div>
+    </div>
+</div>
+<div class="container py-5">
+    <div class="row justify-content-center">
+        <div id="surveyQuestionsComponent" class="col-md-12">
+            <form action="{{ route('submit-survey-questions') }}" method="POST">
+                @csrf
+                <div class="row mb-3">
+                    <div class="col-12">
+                        <div class="bg-light border p-3">
+                            <div class="row">
+                                <div class="col-md-4">
+                                    <div class="form-group">
+                                        <label>Name<sup class="text-danger">*</sup></label>
+                                        <input type="text" class="form-control" name="name" required />
+                                    </div>
+                                </div>
+                                <div class="col-md-4">
+                                    <div class="form-group">
+                                        <label>Email</label>
+                                        <input type="email" class="form-control" name="email" />
+                                        <small class="text-muted">(to receive digital gift card)</small>
+                                    </div>
+                                </div>
+                                <div class="col-md-4">
+                                    <div class="form-group">
+                                        <label>Cell Number</label>
+                                        <input type="text" class="form-control" name="cellNumber" />
+                                    </div>
+                                </div>
+                                <div class="col-md-12">
+                                    <div class="form-group">
+                                        <label>Practice Address</label>
+                                        <input type="text" class="form-control" name="practiceAddress" />
+                                    </div>
+                                </div>
+                            </div>
+                        </div>
+                    </div>
+                </div>
+                <div class="row mb-3">
+                    <div class="col-12 question">
+                        <div class="form-group">
+                            <label>Are you a gastroenterologist?</label>
+                            <div class="d-flex flex-column">
+                                <label><input type="radio" name="are_you_a_gastroenterologist" v-model="form.are_you_a_gastroenterologist" value="YES" /> <span>Yes</span></label>
+                                <label><input type="radio" name="are_you_a_gastroenterologist" v-model="form.are_you_a_gastroenterologist" value="NO" /> <span>No</span></label>
+                            </div>
+                        </div>
+                        <div v-if="form.are_you_a_gastroenterologist == 'NO'" class="form-group">
+                            <label>Your speciality?<sup class="text-danger">*</sup></label>
+                            <input type="text" class="form-control" name="your_specialty" required />
+                        </div>
+
+                    </div>
+                </div>
+                <div class="row mb-3">
+                    <div class="col-12 question">
+                        <div class="form-group">
+                            <label>Years in practice</label>
+                            <div id="rangeSlider" class="noUiSlider"></div>
+                            <input type="hidden" name="years_in_practice" :value="form.years_in_practice" />
+                        </div>
+
+                    </div>
+                </div>
+                <div class="row mt-3">
+                    <div class="col-12">
+                        <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
+                    </div>
+                </div>
+            </form>
+        </div>
+
+    </div>
+</div>
+
+<script>
+    var surveyQuestionsComponent = new Vue({
+        el: '#surveyQuestionsComponent',
+        data: {
+            form: {
+                are_you_a_gastroenterologist: null,
+                years_in_practice: 0
+            }
+        },
+        methods: {
+            initRangeSlider: function() {
+                var self = this;
+                var slider = document.getElementById('rangeSlider');
+                var format = {
+                    to: function(value) {
+                        return Math.round(value);
+                    },
+                    from: function(value) {
+                        return Math.round(value);
+                    }
+                };
+
+                noUiSlider.create(slider, {
+                    start: 0,
+                    connect: 'lower',
+                    range: {
+                        'min': 0,
+                        'max': 70
+                    },
+                    step: 1,
+                    tooltips: true,
+                    format: format,
+                    pips: {
+                        mode: 'steps',
+                        format: format
+                    },
+                });
+                slider.noUiSlider.on('update', function(values, handle) {
+                    self.form.years_in_practice = values[0];
+                });
+            },
+            init: function() {
+                this.initRangeSlider();
+            }
+        },
+        mounted: function() {
+            this.init();
+        }
+    });
+</script>
+
+@endsection

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

@@ -5,7 +5,7 @@
 @endsection
 @endsection
 
 
 @section('context-switch-link')
 @section('context-switch-link')
-  <a class="text-pry" style="font-size: 14px;" href="{{ route('physicians.index') }}">View Site For Physicians</a>
+  <a class="text-pry" style="font-size: 14px;" href="{{ route('hcp.index') }}">View Site For Healthcare Professionals</a>
 @endsection
 @endsection
 
 
 @section('navigation')
 @section('navigation')
@@ -103,7 +103,7 @@
                 <p class="mb-2"><a class="text-white" href="{{route('postCare')}}">Post-treatment care</a></p>
                 <p class="mb-2"><a class="text-white" href="{{route('postCare')}}">Post-treatment care</a></p>
               </div>
               </div>
               <div class="col-lg-3 col-md-3 offset-lg-0 offset-md-1">
               <div class="col-lg-3 col-md-3 offset-lg-0 offset-md-1">
-                <p class="mb-2"><a href="{{ route('physicians.index') }}" class="text-white">For physicians</a></p>
+                <p class="mb-2"><a href="{{ route('hcp.index') }}" class="text-white">For Healthcare Professionals</a></p>
                 <p class="mb-2"><a href="{{route('compare')}}" class="text-white">Compare treatment options</a></p>
                 <p class="mb-2"><a href="{{route('compare')}}" class="text-white">Compare treatment options</a></p>
                 <p class="mb-2"><a href="{{route('faqs')}}" class="text-white">FAQs</a></p>
                 <p class="mb-2"><a href="{{route('faqs')}}" class="text-white">FAQs</a></p>
                 <p class="mb-2"><a href="{{route('find-a-clinic')}}" class="text-white">Find a clinic</a></p>
                 <p class="mb-2"><a href="{{route('find-a-clinic')}}" class="text-white">Find a clinic</a></p>

+ 19 - 19
resources/views/layouts/physicians.blade.php → resources/views/layouts/hcp.blade.php

@@ -1,7 +1,7 @@
 @extends('layouts.base')
 @extends('layouts.base')
 
 
 @section('title')
 @section('title')
-<title>Snyder Hemband | Physicians</title>
+<title>Snyder Hemband | Healthcare Professionals</title>
 @endsection
 @endsection
 
 
 @section('context-switch-link')
 @section('context-switch-link')
@@ -13,12 +13,12 @@
 <div class="container">
 <div class="container">
         <nav class="navbar navbar-expand-lg py-3">
         <nav class="navbar navbar-expand-lg py-3">
             <div class="container-fluid p-0 d-flex position-relative">
             <div class="container-fluid p-0 d-flex position-relative">
-                <a class="navbar-brand" href="{{route('physicians.index')}}">
+                <a class="navbar-brand" href="{{route('hcp.index')}}">
                     <img src="{{asset('/img/logo.svg')}}" alt="Logo">
                     <img src="{{asset('/img/logo.svg')}}" alt="Logo">
                 </a>
                 </a>
                 <div>
                 <div>
                     <div class="d-flex align-items-center">
                     <div class="d-flex align-items-center">
-                      <a class="d-lg-none d-inline btn rounded-0 btn-pry px-3 py-2" href="{{ route('physicians.order-products-samples') }}">Samples</a>
+                      <a class="d-lg-none d-inline btn rounded-0 btn-pry px-3 py-2" href="{{ route('hcp.order-products-samples') }}">Samples</a>
                       <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navBar" aria-controls="navBar" aria-expanded="false" aria-label="Toggle navigation">
                       <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navBar" aria-controls="navBar" aria-expanded="false" aria-label="Toggle navigation">
                           <i class="fas fa-bars"></i>
                           <i class="fas fa-bars"></i>
                       </button>
                       </button>
@@ -26,25 +26,25 @@
                     <div class="collapse navbar-collapse" id="navBar">
                     <div class="collapse navbar-collapse" id="navBar">
                         <ul class="navbar-nav ms-auto align-items-lg-center">
                         <ul class="navbar-nav ms-auto align-items-lg-center">
                             <!-- <li class="nav-item">
                             <!-- <li class="nav-item">
-                                {{--<a class="nav-link" href="{{ route('physicians.instructions-for-use') }}">Instructions</a> --}}
+                                {{--<a class="nav-link" href="{{ route('hcp.instructions-for-use') }}">Instructions</a> --}}
                             </li> -->
                             </li> -->
                             <li class="nav-item">
                             <li class="nav-item">
-                              <a class="nav-link" href="{{ route('physicians.get-trained') }}">Get Trained</a>
+                              <a class="nav-link" href="{{ route('hcp.get-trained') }}">Get Trained</a>
                             </li>
                             </li>
                             <li class="nav-item">
                             <li class="nav-item">
-                                <a class="nav-link" href="{{ route('physicians.practice-support') }}">Practice Support</a>
+                                <a class="nav-link" href="{{ route('hcp.practice-support') }}">Practice Support</a>
                             </li>
                             </li>
                             <li class="nav-item">
                             <li class="nav-item">
-                              <a class="nav-link" href="{{ route('physicians.order-products') }}">Order Products</a>
+                              <a class="nav-link" href="{{ route('hcp.order-products') }}">Order Products</a>
                             </li>
                             </li>
                             <!-- <li class="nav-item">
                             <!-- <li class="nav-item">
-                                <a class="nav-link" href="{{ route('physicians.fda-registration') }}">FDA Registration</a>
+                                <a class="nav-link" href="{{ route('hcp.fda-registration') }}">FDA Registration</a>
                             </li> -->
                             </li> -->
                             <li class="nav-item">
                             <li class="nav-item">
-                              <a class="nav-link" href="{{ route('physicians.contact-us') }}">Contact Us</a>
+                              <a class="nav-link" href="{{ route('hcp.contact-us') }}">Contact Us</a>
                             </li>
                             </li>
                             <li class="nav-item d-lg-block d-none">
                             <li class="nav-item d-lg-block d-none">
-                                <a class="btn px-4 py-2 rounded-0 btn-pry" href="{{ route('physicians.order-products-samples') }}">Request Samples</a>
+                                <a class="btn px-4 py-2 rounded-0 btn-pry" href="{{ route('hcp.order-products-samples') }}">Request Samples</a>
                             </li>
                             </li>
                         </ul>
                         </ul>
                     </div>
                     </div>
@@ -65,7 +65,7 @@
         <div class="container">
         <div class="container">
           <div class="d-lg-flex align-items-center justify-content-between w-100">
           <div class="d-lg-flex align-items-center justify-content-between w-100">
             <h4 class="header m-0">Considering Snyder Hemband? <br class="d-md-none d-block"> Reach out!</h4>
             <h4 class="header m-0">Considering Snyder Hemband? <br class="d-md-none d-block"> Reach out!</h4>
-            <a href="{{route('physicians.contact-us')}}" class="btn btn-pry px-5 mt-lg-0 mt-3">Contact us</a>
+            <a href="{{route('hcp.contact-us')}}" class="btn btn-pry px-5 mt-lg-0 mt-3">Contact us</a>
           </div>
           </div>
         </div>
         </div>
       </div>
       </div>
@@ -77,18 +77,18 @@
               </div>
               </div>
               <div class="col-lg-3 col-md-4">
               <div class="col-lg-3 col-md-4">
                 <p class="mb-2"><a href="{{ route('index') }}" class="text-white">Snyder Hemband</a></p>
                 <p class="mb-2"><a href="{{ route('index') }}" class="text-white">Snyder Hemband</a></p>
-                <p class="mb-2"><a href="{{route('physicians.practice-support')}}" class="text-white">Practice Support</a></p>
-                <p class="mb-2"><a href="{{route('physicians.order-products')}}" class="text-white">Order Products</a></p>
+                <p class="mb-2"><a href="{{route('hcp.practice-support')}}" class="text-white">Practice Support</a></p>
+                <p class="mb-2"><a href="{{route('hcp.order-products')}}" class="text-white">Order Products</a></p>
 
 
               </div>
               </div>
               <div class="col-lg-3 col-md-3 offset-lg-0 offset-md-1">
               <div class="col-lg-3 col-md-3 offset-lg-0 offset-md-1">
                 <p class="mb-2"><a href="{{route('index')}}" class="text-white">For Patients</a></p>
                 <p class="mb-2"><a href="{{route('index')}}" class="text-white">For Patients</a></p>
-                <p class="mb-2"><a href="{{route('physicians.get-trained')}}" class="text-white">Schedule For Training</a></p>
-                {{-- <p class="mb-2"><a href="{{route('physicians.instructions-for-use')}}" class="text-white">Instructions for use</a></p> --}}
-                <!-- <p class="mb-2"><a href="{{route('physicians.fda-registration')}}" class="text-white">FDA Registration</a></p> -->
+                <p class="mb-2"><a href="{{route('hcp.get-trained')}}" class="text-white">Schedule For Training</a></p>
+                {{-- <p class="mb-2"><a href="{{route('hcp.instructions-for-use')}}" class="text-white">Instructions for use</a></p> --}}
+                <!-- <p class="mb-2"><a href="{{route('hcp.fda-registration')}}" class="text-white">FDA Registration</a></p> -->
               </div>
               </div>
               <div class="col-lg-3 col-md-4">
               <div class="col-lg-3 col-md-4">
-              <p class="mb-2"><a href="{{route('physicians.contact-us')}}" class="text-white">Contact Us</a></p>
+              <p class="mb-2"><a href="{{route('hcp.contact-us')}}" class="text-white">Contact Us</a></p>
                 <p class="mb-2"><a href="mailto:{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}" class="text-white">{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}</a></p>
                 <p class="mb-2"><a href="mailto:{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}" class="text-white">{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}</a></p>
               </div>
               </div>
             </div>
             </div>
@@ -99,8 +99,8 @@
               </div>
               </div>
               <div class="d-sm-flex">
               <div class="d-sm-flex">
                 <div class="mt-sm-0 mt-2">
                 <div class="mt-sm-0 mt-2">
-                  <a href="{{route('physicians.privacy')}}" class="ms-sm-4 text-white opacity-75">Privacy Policy</a>
-                  <a href="{{route('physicians.terms')}}" class="ms-4 text-white opacity-75">Terms and conditions</a>
+                  <a href="{{route('hcp.privacy')}}" class="ms-sm-4 text-white opacity-75">Privacy Policy</a>
+                  <a href="{{route('hcp.terms')}}" class="ms-4 text-white opacity-75">Terms and conditions</a>
                 </div>
                 </div>
               </div>
               </div>
             </div>
             </div>

+ 3 - 1
routes/web.php

@@ -28,8 +28,10 @@ Route::get('/contact-us', [AppController::class, 'contact'])->name('contact');
 Route::post('/submit-contact-us', [AppController::class, 'submitContact'])->name('submit-contact');
 Route::post('/submit-contact-us', [AppController::class, 'submitContact'])->name('submit-contact');
 Route::get('/privacy-policy', [AppController::class, 'privacy'])->name('privacy');
 Route::get('/privacy-policy', [AppController::class, 'privacy'])->name('privacy');
 Route::get('/terms-of-service', [AppController::class, 'terms'])->name('terms');
 Route::get('/terms-of-service', [AppController::class, 'terms'])->name('terms');
+Route::get('/survey', [AppController::class, 'surveyQuestions'])->name('survey-questions');
+Route::post('/submit-survey-questions', [AppController::class, 'submitSurveyQuestions'])->name('submit-survey-questions');
 
 
-Route::prefix('/physicians/')->name('physicians.')->group(function () {
+Route::prefix('/hcp/')->name('hcp.')->group(function () {
     Route::get('/', [PhysiciansController::class, 'index'])->name('index');
     Route::get('/', [PhysiciansController::class, 'index'])->name('index');
     // Route::get('/instructions-for-use', [PhysiciansController::class, 'instructionsForUse'])->name('instructions-for-use');
     // 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', [PhysiciansController::class, 'practiceSupport'])->name('practice-support');

Unele fișiere nu au fost afișate deoarece prea multe fișiere au fost modificate în acest diff