|
@@ -15,6 +15,9 @@
|
|
|
<div class="mb-2">
|
|
|
<input type="text" class="form-control form-control-sm" name="strength" value="" placeholder="Strength/Form">
|
|
|
</div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <input type="text" class="form-control form-control-sm" name="frequency" value="" placeholder="Frequency">
|
|
|
+ </div>
|
|
|
<div class="d-flex align-items-center">
|
|
|
<button class="btn btn-sm btn-primary mr-2" type="button" submit>Save</button>
|
|
|
<button class="btn btn-sm btn-default mr-2 border" type="button" cancel>Cancel</button>
|
|
@@ -40,6 +43,7 @@
|
|
|
<tr>
|
|
|
<th class="px-2 text-secondary">Medication</th>
|
|
|
<th class="px-2 text-secondary">Strength / Form</th>
|
|
|
+ <th class="px-2 text-secondary">Frequency</th>
|
|
|
<th class="px-2 text-secondary">Created By</th>
|
|
|
<th class="px-2 text-secondary">Created At</th>
|
|
|
<th class="px-2 text-secondary delete-column"> </th>
|
|
@@ -50,6 +54,7 @@
|
|
|
<tr>
|
|
|
<td class="px-2">{{$line->content_text}}</td>
|
|
|
<td class="px-2">{{isset($line->contentDetail()->strength) ? $line->contentDetail()->strength : '-' }}</td>
|
|
|
+ <td class="px-2">{{isset($line->contentDetail()->frequency) ? $line->contentDetail()->frequency : '-' }}</td>
|
|
|
<td class="px-2">{{$line->createdBySession && $line->createdBySession->pro ? $line->createdBySession->pro->displayName() : '-'}}</td>
|
|
|
<td class="px-2">{{ friendly_date_time($line->created_at) }}</td>
|
|
|
<td class="px-2 text-center delete-column">
|
|
@@ -67,6 +72,9 @@
|
|
|
<div class="mb-2">
|
|
|
<input type="text" class="form-control form-control-sm" name="strength" value="{{isset($line->contentDetail()->strength) ? $line->contentDetail()->strength : '' }}" placeholder="Strength/Form">
|
|
|
</div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <input type="text" class="form-control form-control-sm" name="frequency" value="{{isset($line->contentDetail()->frequency) ? $line->contentDetail()->frequency : '' }}" placeholder="Frequency">
|
|
|
+ </div>
|
|
|
<div class="d-flex align-items-center">
|
|
|
<button class="btn btn-sm btn-primary mr-2" type="button" submit>Save</button>
|
|
|
<button class="btn btn-sm btn-default mr-2 border" type="button" cancel>Cancel</button>
|