order-products.blade.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @extends('layouts.physicians')
  2. @section('content')
  3. <div class="bg-light">
  4. <div class="container pt-3">
  5. <nav class="mb-0">
  6. <ol class="breadcrumb">
  7. <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
  8. <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
  9. <li class="breadcrumb-item active" aria-current="page">Order Products</li>
  10. </ol>
  11. </nav>
  12. </div>
  13. </div>
  14. <div class="bg-grey py-5">
  15. <div class="container">
  16. <div class="row justify-content-center">
  17. <div class="col-lg-6 text-center">
  18. <h5 class="subtitle m-0">Order Snyder HemBand Products for Your Practice</h5>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="container py-5">
  24. <div class="row">
  25. <div class="col-lg-3 d-lg-block d-none">
  26. @include('app.physicians.order-products.sidenav')
  27. </div>
  28. <div class="col-lg-8">
  29. <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>
  30. <div class="d-md-flex">
  31. <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>
  32. <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>
  33. <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>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. @endsection