|
@@ -35,6 +35,12 @@
|
|
<li class="nav-item">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ route('patients.view.history', ['patient' => $patient]) }}">History</a>
|
|
<a class="nav-link" href="{{ route('patients.view.history', ['patient' => $patient]) }}">History</a>
|
|
</li>
|
|
</li>
|
|
|
|
+ <li class="nav-item">
|
|
|
|
+ <a class="nav-link" href="{{ route('patients.view.sms', ['patient' => $patient]) }}">SMS</a>
|
|
|
|
+ </li>
|
|
|
|
+ <li class="nav-item">
|
|
|
|
+ <a class="nav-link" href="{{ route('patients.view.sms-numbers', ['patient' => $patient]) }}">SMS Numbers</a>
|
|
|
|
+ </li>
|
|
<li class="nav-item">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/patients/view/{{ $patient->uid }}/intake">Intake</a>
|
|
<a class="nav-link" href="/patients/view/{{ $patient->uid }}/intake">Intake</a>
|
|
</li>
|
|
</li>
|
|
@@ -351,15 +357,35 @@
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div>
|
|
|
|
+ <div moe relative>
|
|
|
|
+ <button start show>+ SMS</button>
|
|
|
|
+ <form url="/api/clientSms/createOutgoing" right class="mcp-theme-1">
|
|
|
|
+ <input type="hidden" name="uid" value="{{ $patient->uid }}">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Cell Number</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm" name="cellNumber" value="{{$patient->cell_number}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Message</label>
|
|
|
|
+ <textarea type="text" class="form-control form-control-sm" name="message"></textarea>
|
|
|
|
+ </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>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
<div>
|
|
<div>
|
|
<button onclick="return openInRHS('/pro/meet/{{ $patient->uid }}')">Video</button>
|
|
<button onclick="return openInRHS('/pro/meet/{{ $patient->uid }}')">Video</button>
|
|
<span moe relative class="ml-1">
|
|
<span moe relative class="ml-1">
|
|
<a start show title="SMS check-in link to the patient"><i class="on-hover-opaque fa fa-paper-plane"></i></a>
|
|
<a start show title="SMS check-in link to the patient"><i class="on-hover-opaque fa fa-paper-plane"></i></a>
|
|
<form url="/api/client/sendCheckInTokenViaSms" right class="mcp-theme-1">
|
|
<form url="/api/client/sendCheckInTokenViaSms" right class="mcp-theme-1">
|
|
<input type="hidden" name="uid" value="{{ $patient->uid }}">
|
|
<input type="hidden" name="uid" value="{{ $patient->uid }}">
|
|
- <p class="small min-width-200px">Send SMS to patient with check-in link?</p>
|
|
|
|
- <div class="form-group">
|
|
|
|
- <label for="" class="control-label">Cell Number</label>
|
|
|
|
|
|
+ <p class="small min-width-200px mb-2">Send SMS to patient with check-in link?</p>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Cell Number</label>
|
|
<input type="text" class="form-control input-sm" name="cellNumber" value="{{$patient->cell_number}}">
|
|
<input type="text" class="form-control input-sm" name="cellNumber" value="{{$patient->cell_number}}">
|
|
</div>
|
|
</div>
|
|
<div class="d-flex align-items-center">
|
|
<div class="d-flex align-items-center">
|
|
@@ -579,7 +605,7 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<div class="form-group">
|
|
- <label for="" class="control-label">HCP Pro</label>
|
|
|
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">HCP Pro</label>
|
|
<select name="hcpProUid" class="form-control">
|
|
<select name="hcpProUid" class="form-control">
|
|
<option value="">-- select hcp pro --</option>
|
|
<option value="">-- select hcp pro --</option>
|
|
@foreach ($pros as $iPro)
|
|
@foreach ($pros as $iPro)
|