|
@@ -32,480 +32,13 @@
|
|
|
|
|
|
<div class="row client-single-dashboard">
|
|
|
<div class="col-6">
|
|
|
-
|
|
|
- {{-- appointments --}}
|
|
|
@include('app/patient/partials/appointments')
|
|
|
-
|
|
|
- {{-- canvas based allergies --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 mt-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Allergies</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.allergies.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- allergies - point -->
|
|
|
- @include('app.patient.point-based-partials.allergies')
|
|
|
-
|
|
|
- {{-- canvas based rx --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 mt-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Current Medications</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.rx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- meds - point -->
|
|
|
- @include('app.patient.point-based-partials.rx')
|
|
|
-
|
|
|
- {{-- devices --}}
|
|
|
- <?php
|
|
|
- $availableDevices = count($devices);
|
|
|
- $patientDeviceIDs = \App\Models\ClientBDTDevice::select('id')->where('client_id', $patient->id)->where('is_active', true)->get()->toArray();
|
|
|
- $patientDeviceIDs = array_map(function($_x) {
|
|
|
- return $_x["id"];
|
|
|
- }, $patientDeviceIDs);
|
|
|
- ?>
|
|
|
- <div class="mt-2 pb-1" id="patient-dashboard-devices">
|
|
|
- <div class="d-flex align-items-center mb-2 py-2 border-top border-bottom">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Devices</h6>
|
|
|
- @if($availableDevices > 0)
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- <span moe>
|
|
|
- <a start show>Add</a>
|
|
|
- <form url="/api/clientBdtDevice/create" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Device</label>
|
|
|
- <select name="deviceUid" class="form-control form-control-sm">
|
|
|
- <option value=""> --select-- </option>
|
|
|
- @foreach($devices as $device)
|
|
|
- @if(!in_array($device->id, $patientDeviceIDs))
|
|
|
- <option value="{{$device->uid}}">
|
|
|
- {{$device->imei}} ({{$device->category}})
|
|
|
- </option>
|
|
|
- @endif
|
|
|
- @endforeach
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Instructions</label>
|
|
|
- <input type="text" name="instructions" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Internal Memo</label>
|
|
|
- <input type="text" name="internalMemo" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Status</label>
|
|
|
- <input type="text" name="status" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Status Memo</label>
|
|
|
- <input type="text" name="statusMemo" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- <table class="table table-sm border-0 my-0 mx-2">
|
|
|
- <tbody>
|
|
|
- @foreach($patient->devices as $device)
|
|
|
- <tr>
|
|
|
- <td class="text-black p-0 border-0">
|
|
|
- <div class="pb-0">
|
|
|
- <span relative moe>
|
|
|
- <a class="on-hover-opaque" start show title="Update">
|
|
|
- <i class="font-size-11 fa fa-edit text-primary"></i>
|
|
|
- </a>
|
|
|
- <form url="/api/clientBdtDevice/update">
|
|
|
- <input type="hidden" name="uid" value="{{ $device->uid }}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Instructions</label>
|
|
|
- <input type="text" name="instructions"
|
|
|
- value="{{$device->instructions}}"
|
|
|
- class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Internal Memo</label>
|
|
|
- <input type="text" name="internalMemo"
|
|
|
- value="{{$device->internal_memo}}"
|
|
|
- class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Status</label>
|
|
|
- <input type="text" name="status"
|
|
|
- value="{{$device->status}}"
|
|
|
- class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Status Memo</label>
|
|
|
- <input type="text" name="statusMemo"
|
|
|
- value="{{$device->status_memo}}"
|
|
|
- class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- <b>{{$device->device->category}}</b> / IMEI: {{$device->device->imei}}
|
|
|
- </div>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- @endforeach
|
|
|
- @if(!$patient->devices || count($patient->devices) === 0)
|
|
|
- <tr>
|
|
|
- <td class="text-secondary p-0 border-0">
|
|
|
- No devices
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- @endif
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
-
|
|
|
- {{-- device measurements --}}
|
|
|
- {{-- @include('app/patient/partials/device-measurements') --}}
|
|
|
-
|
|
|
- {{-- measurements --}}
|
|
|
- @include('app/patient/partials/measurements')
|
|
|
-
|
|
|
- {{-- vitals --}}
|
|
|
- {{--@include('app/patient/partials/vitals')--}}
|
|
|
-
|
|
|
- {{-- canvas based vitals --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Vitals</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.vitals.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- vitals - point -->
|
|
|
- <?php $latestVitals = \App\Models\Point::where('client_id', $patient->id)->where('category', 'VITALS')->orderBy('id', 'DESC')->first(); ?>
|
|
|
- <div class="pt-2 mt-2">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Vitals
|
|
|
- @if(!!$latestVitals && $latestVitals->note && $latestVitals->note->effective_dateest)
|
|
|
- <span class="text-secondary font-weight-normal pl-1">(as on
|
|
|
- <a href="{{route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $latestVitals->note])}}">{{friendlier_date($latestVitals->note->effective_dateest)}}</a>)
|
|
|
- </span>
|
|
|
- @endif
|
|
|
- </h6>
|
|
|
- @if($isOldClient)
|
|
|
- <div class="px-2 font-weight-bold alert alert-info text-sm my-0 ml-2 py-1">New</div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @if(!!$latestVitals)
|
|
|
- @include('app.patient.partials.latest-vitals', ['patient' => $patient, 'point' => $latestVitals])
|
|
|
- @else
|
|
|
- <div class="text-secondary">Nothing here yet</div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
</div>
|
|
|
<div class="col-6">
|
|
|
-
|
|
|
- {{-- canvas based dx --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 mb-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Current Problems / Focus Areas</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.dx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- probs - point -->
|
|
|
- @include('app.patient.point-based-partials.dx')
|
|
|
-
|
|
|
- {{-- canvas based careteam --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 mt-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Care Team</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.care-team.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- careteam - point -->
|
|
|
- @include('app.patient.point-based-partials.care-team')
|
|
|
-
|
|
|
- {{-- history_medical --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="pt-2 mt-2 border-top">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Medical History</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.pmhx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- pmhx - point -->
|
|
|
- @include('app.patient.point-based-partials.pmhx')
|
|
|
-
|
|
|
- {{-- history_surgical --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="mt-2 border-top pt-2">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Surgical History</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.pshx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- pshx - point -->
|
|
|
- @include('app.patient.point-based-partials.shx')
|
|
|
-
|
|
|
- {{-- history_family --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="mt-2 border-top pt-2">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Family History</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.fhx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- fhx - point -->
|
|
|
- @include('app.patient.point-based-partials.fhx')
|
|
|
-
|
|
|
- {{-- history_social --}}
|
|
|
- @if($isOldClient)
|
|
|
- <div class="mt-2 border-top pt-2">
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Social History</h6>
|
|
|
- <div class="px-2 font-weight-bold alert alert-warning text-sm my-0 ml-2 py-1">Deprecated</div>
|
|
|
- </div>
|
|
|
- <div class="bg-light border p-2 mb-3">
|
|
|
- @include('app.patient.canvas-sections.sochx.summary')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- <!-- sochx - point -->
|
|
|
- @include('app.patient.point-based-partials.sochx')
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <?php /* <div class="row my-3">
|
|
|
- <div class="col-12">
|
|
|
- {{-- erx --}}
|
|
|
- <div class="mb-2 pt-3 pb-2 border-top">
|
|
|
- <style>
|
|
|
- td.fit {
|
|
|
- width:1%;
|
|
|
- white-space:nowrap;
|
|
|
- }
|
|
|
- </style>
|
|
|
- <div class="d-flex align-items-center pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">ERx</h6>
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- <div moe>
|
|
|
- <a start show class="py-0 font-weight-normal">Add</a>
|
|
|
- <form url="/api/actionItem/create" wide>
|
|
|
- <input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
|
- <input type="hidden" name="prescriberProUid" value="{{ $pro->uid }}">
|
|
|
- <input type="hidden" name="category" value="DRUG">
|
|
|
- <div class="mb-2">
|
|
|
- <label for="" class="control-label text-sm text-secondary mb-1">Pharmacy</label>
|
|
|
- <select name="toFacilityUid"
|
|
|
- class="form-control form-control-sm">
|
|
|
- <option value="">-- Pharmacy --</option>
|
|
|
- @foreach ($facilities as $facility)
|
|
|
- <option value="{{$facility->uid}}">{{$facility->name}}</option>
|
|
|
- @endforeach
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="contentText" value="" placeholder="Title *" required>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="contentDetail" value="" placeholder="Directions">
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class="px-2 text-secondary border-bottom-0 w-25">Prescription</th>
|
|
|
- <th class="px-2 text-secondary border-bottom-0 fit">Created</th>
|
|
|
- <th class="px-2 text-secondary border-bottom-0 fit">Status</th>
|
|
|
- <th class="px-2 text-secondary border-bottom-0 fit">Pharmacy</th>
|
|
|
- <th class="px-2 text-secondary border-bottom-0"> </th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- <?php $prevItemType = false; ?>
|
|
|
- @foreach($patient->actionItems as $item)
|
|
|
- @if($item->action_item_category === 'DRUG')
|
|
|
- <tr>
|
|
|
- <td class="px-2">
|
|
|
- {{$item->content_text}}
|
|
|
- <span moe>
|
|
|
- <a start show class="on-hover-opaque"><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/actionItem/updateContent" wide>
|
|
|
- <input type="hidden" name="uid" value="{{ $item->uid }}">
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="contentText" value="{{ $item->content_text }}" placeholder="Title *" required>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="contentDetail" value="{{ $item->content_detail }}" placeholder="Details">
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- <div class="text-sm text-secondary">{{$item->content_detail}}</div>
|
|
|
- </td>
|
|
|
- <td class="px-2">{{friendly_date_time($item->created_at, false)}}</td>
|
|
|
- <td class="px-2">
|
|
|
- {{ucwords($item->status_category)}}
|
|
|
- <span moe>
|
|
|
- <a start show class="on-hover-opaque"><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/actionItem/updateStatus">
|
|
|
- <input type="hidden" name="uid" value="{{ $item->uid }}">
|
|
|
- <div class="mb-2">
|
|
|
- <label for="" class="control-label text-sm text-secondary mb-1">Status *</label>
|
|
|
- <select name="statusCategory" class="form-control form-control-sm" required>
|
|
|
- <option {{ $item->status_category === 'OPEN' ? 'selected' : '' }} value="OPEN">Open</option>
|
|
|
- <option {{ $item->status_category === 'CLOSED' ? 'selected' : '' }} value="CLOSED">Closed</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="statusMemo" value="" placeholder="Memo">
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- </td>
|
|
|
- <td class="px-2">
|
|
|
- {{$item->facility ? $item->facility->name : ''}}
|
|
|
- <span moe>
|
|
|
- <a start show class="on-hover-opaque"><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/actionItem/updateToFacility">
|
|
|
- <input type="hidden" name="uid" value="{{ $item->uid }}">
|
|
|
- <div class="mb-2">
|
|
|
- <label for="" class="control-label text-sm text-secondary mb-1">Pharmacy *</label>
|
|
|
- <select name="toFacilityUid" class="form-control form-control-sm" required>
|
|
|
- <option value="">-- Pharmacy --</option>
|
|
|
- @foreach ($facilities as $facility)
|
|
|
- <option {{ $item->to_facility_id === $facility->id ? 'selected' : '' }} value="{{$facility->uid}}">{{$facility->name}}</option>
|
|
|
- @endforeach
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- </td>
|
|
|
- <td class="px-2 text-center">
|
|
|
- <div class="d-flex align-items-center justify-content-start">
|
|
|
- @if($item->is_signed_by_prescriber)
|
|
|
- <span class="text-secondary">
|
|
|
- <i class="fa fa-check"></i>
|
|
|
- Signed
|
|
|
- </span>
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- @else
|
|
|
- @if($pro->id === $item->prescriber_pro_id)
|
|
|
- <span moe relative>
|
|
|
- <a start show>Sign</a>
|
|
|
- <form url="/api/actionItem/signAsPrescriber" right>
|
|
|
- <input type="hidden" name="uid" value="{{ $item->uid }}">
|
|
|
- <p class="small min-width-200px text-left">Sign this action items as the prescriber?</p>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-success mr-2" submit>Yes</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>No</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- @endif
|
|
|
- @endif
|
|
|
- <span moe relative>
|
|
|
- <a start show>eFax</a>
|
|
|
- <form url="/api/actionItem/efax" right>
|
|
|
- <input type="hidden" name="uid" value="{{ $item->uid }}">
|
|
|
- <div class="mb-2">
|
|
|
- <input type="text" class="form-control form-control-sm" name="toFaxNumber" value="" placeholder="To Number *" required>
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Send</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- @endif
|
|
|
- @endforeach
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div> */ ?>
|
|
|
-
|
|
|
- <div class="row my-3">
|
|
|
- <div class="col-md-9">
|
|
|
- {{-- memos --}}
|
|
|
- <div class="mb-2 pt-3 pb-2 border-top">
|
|
|
- <div class="">
|
|
|
+ <div class="mb-2 pt-3 pb-2 border-top">
|
|
|
+ <div class="">
|
|
|
<div class="d-flex align-items-start pb-2">
|
|
|
- <h6 class="my-0 font-weight-bold text-secondary">Client Memos</h6>
|
|
|
+ <h6 class="my-0 font-weight-bold text-secondary">Memos</h6>
|
|
|
</div>
|
|
|
<div moe class="w-100 p-2 border mb-3">
|
|
|
<form url="/api/clientMemo/create" show>
|
|
@@ -659,13 +192,8 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="col-md-3">
|
|
|
- <div class="mb-2 pt-3 pb-2 border-top">
|
|
|
- @include('app.patient.intake-data.intake-data')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
<script>
|
|
|
(function() {
|