|
@@ -1,10 +1,19 @@
|
|
|
|
+<link href="/select2/select2.min.css" rel="stylesheet" />
|
|
|
|
+<script src="/select2/select2.min.js"></script>
|
|
|
|
+
|
|
|
|
+<style>
|
|
|
|
+ .select2-container {
|
|
|
|
+ width: 100% !important;
|
|
|
|
+}
|
|
|
|
+</style>
|
|
|
|
+
|
|
<div class="">
|
|
<div class="">
|
|
<div class="d-flex align-items-center pb-2">
|
|
<div class="d-flex align-items-center pb-2">
|
|
<p class="font-weight-bold text-secondary m-0 font-size-14">Handouts</p>
|
|
<p class="font-weight-bold text-secondary m-0 font-size-14">Handouts</p>
|
|
<span class="mx-2 text-secondary">|</span>
|
|
<span class="mx-2 text-secondary">|</span>
|
|
<div moe>
|
|
<div moe>
|
|
<a start show class="">Add</a>
|
|
<a start show class="">Add</a>
|
|
- <form url="/api/handoutClient/create">
|
|
|
|
|
|
+ <form url="/api/handoutClient/create" style="min-width: 300px;">
|
|
<input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
<input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
@if(@$note)
|
|
@if(@$note)
|
|
<input type="hidden" name="noteUid" value="{{ $note->uid }}">
|
|
<input type="hidden" name="noteUid" value="{{ $note->uid }}">
|
|
@@ -75,4 +84,8 @@
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
|
|
+<script>
|
|
|
|
+ $(document).ready(function(){
|
|
|
|
+ $('select[name=handoutUid]').select2();
|
|
|
|
+ });
|
|
|
|
+</script>
|