Vijayakrishnan Krishnan 4 år sedan
förälder
incheckning
375854bebf
1 ändrade filer med 0 tillägg och 113 borttagningar
  1. 0 113
      resources/views/app/patient/dashboard.blade.php

+ 0 - 113
resources/views/app/patient/dashboard.blade.php

@@ -1,70 +1,12 @@
 @extends ('layouts.patient')
 
-{{--@section('section-title')
-    Patient Dashboard
-@endsection--}}
-
 @section('inner-content')
-    {{--<div>
-        <h1>Sample info line moe</h1>
-        <div moe>
-            <form show url="/api/clientInfoLine/create">
-                <input type="hidden" name="clientUid" value="{{$patient->uid}}">
-                <input type="text" name="category" value="" value="" placeholder="category"><br>
-                <input type="text" name="contentText" placeholder="content text"><br>
-                <input type="text" name="whatDoesTheFoxSay" placeholder="What does the fox say?"><br>
-                <button submit>Submit</button>
-            </form>
-        </div>
-    </div>--}}
-
     <div>
-        <!--
-        <h1>Sample measurement moe</h1>
-        <div moe>
-            <form show url="/api/measurement/create">
-                <input type="hidden" name="clientUid" value="{{$patient->uid}}">
-                <input type="text" name="label" value="" value="" placeholder="label"><br>
-                <input type="text" name="value" placeholder="value"><br>
-                <input type="date" name="effectiveDate" placeholder="value"><br>
-                <input type="text" name="memo" placeholder="memo"><br>
-                <button submit>Submit</button>
-            </form>
-        </div>
-        <div>
-            <h1>Measurements</h1>
-            <?php $measurements = json_decode($patient->latest_measurements);?>
-            <table class="table table-striped table-sm">
-                <thead>
-                <tr>
-                    <th>Label</th>
-                    <th>Value</th>
-                    <th>Effective date</th>
-                    <th>Memo</th>
-                </tr>
-                </thead>
-                <tbody>
-                {{--@foreach ($measurements as $label => $data)
-                    <tr>
-                        <td>{{$label}}</td>
-                        <td>{{$data->value}}</td>
-                        <td>{{$data->effectiveDate}}</td>
-                        <td>{{$data->memo}}</td>
-                    </tr>
-                @endforeach--}}
-
-                </tbody>
-            </table>
-        </div>
-        -->
-
 
         {{-- CARE PLAN START --}}
         <?php $infoLines = json_decode($patient->info_lines);?>
         <?php $infoLines = !$infoLines ? [] : $infoLines; ?>
 
-        {{--<hr class="mt-3 mb-0 m-negator">--}}
-
         <div class="row">
             <div class="col-6">
                 {{-- allergies --}}
@@ -1032,59 +974,4 @@
         </div>
 
     </div>
-    <?php /* <pre class="mt-5 pt-5">
-        CARE PLAN: [edit]
-
-            Current Medications:
-
-            Dx & Focus Areas:
-
-                Title | ICD | Chronic or Acute | Prognosis | Treatment Goal | Treatment Plan
-
-            Care Team:
-
-                Name | Specialty | Organization | Phone | Fax | Next Appointment | Memo
-
-            Recent Measurements:
-
-                Vitals:
-
-                    BP: 120 / 80
-                    HR: 100 bpm
-                    Temp: 103.0 F
-                    RR: 39 rpm
-                    Ht: 5' 10"
-                    Wt: 230 lbs
-                    BMI: 33
-                    SpO2: 3.0%
-                    Inhaled O2: 4.0%
-
-                Lab:
-
-                    A1c:
-                    LDL:
-                    HDL:
-                    Trigs:
-
-                Other:
-
-                    ...
-
-            History:
-
-                Medical:
-                Surgical:
-                Family:
-                Social:
-                OB & Preg:
-                Hospitalizations / Procedures:
-
-			Screenings:
-                Colonoscopy:
-                Mammogram:
-                ...//TODO checklist
-
-        RECENT E&M NOTES:
-            # | HCP | Date | Name | DOB | Title | Bill(s)
-    </pre> */ ?>
 @endsection