|
@@ -33,6 +33,7 @@
|
|
|
<th class="px-2 text-secondary">Display Name</th>
|
|
|
<th class="px-2 text-secondary">View</th>
|
|
|
<th class="px-2 text-secondary w-50">Shareable Link</th>
|
|
|
+ <th class="px-2 text-secondary"></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -47,6 +48,30 @@
|
|
|
</a>
|
|
|
</td>
|
|
|
<td class="px-2"><b>{{ $downloadLink }}</b></td>
|
|
|
+ <td class="px-2">
|
|
|
+ <div moe="" relative="">
|
|
|
+ <a start="" show="" href="#">SMS Link</a>
|
|
|
+ <form url="/api/clientSms/createOutgoing" right="" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="d5de7592-14f1-4df8-aed3-988b1e50afb2">
|
|
|
+ <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" rows="10" class="form-control form-control-sm" name="message"
|
|
|
+ >Dear {{$patient->displayName()}}, Access the handout ({{$handout->display_name}}) at the following link: {{$downloadLink}}
|
|
|
+ </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>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|