|
@@ -48,12 +48,12 @@
|
|
@foreach($infoLines as $line)
|
|
@foreach($infoLines as $line)
|
|
<tr>
|
|
<tr>
|
|
<td class="px-2">{{$line->content_text}}</td>
|
|
<td class="px-2">{{$line->content_text}}</td>
|
|
- <td class="px-2">{{ $line->contentDetail()->{"ICD"} }}</td>
|
|
|
|
- <td class="px-2">{{ $line->contentDetail()->{"Chronic or Acute"} }}</td>
|
|
|
|
- <td class="px-2">{{ $line->contentDetail()->{"Prognosis"} }}</td>
|
|
|
|
- <td class="px-2">{{ $line->contentDetail()->{"Treatment Goal"} }}</td>
|
|
|
|
- <td class="px-2">{{ $line->contentDetail()->{"Treatment Plan"} }}</td>
|
|
|
|
- <td class="px-2">{{$line->createdBySession && $line->createdBySession->pro ? $line->createdBySession->pro->displayName() : '-'}}</td>
|
|
|
|
|
|
+ <td class="px-2">{{ @$line->contentDetail()->{"ICD"} }}</td>
|
|
|
|
+ <td class="px-2">{{ @$line->contentDetail()->{"Chronic or Acute"} }}</td>
|
|
|
|
+ <td class="px-2">{{ @$line->contentDetail()->{"Prognosis"} }}</td>
|
|
|
|
+ <td class="px-2">{{ @$line->contentDetail()->{"Treatment Goal"} }}</td>
|
|
|
|
+ <td class="px-2">{{ @$line->contentDetail()->{"Treatment Plan"} }}</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">{{ friendly_date_time($line->created_at) }}</td>
|
|
<td class="px-2 text-center delete-column">
|
|
<td class="px-2 text-center delete-column">
|
|
<span moe relative class="mr-2">
|
|
<span moe relative class="mr-2">
|
|
@@ -65,7 +65,7 @@
|
|
<input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
<input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
<input type="hidden" name="category" value="dx">
|
|
<input type="hidden" name="category" value="dx">
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <input type="text" class="form-control form-control-sm" name="ICD" value="{{ $line->contentDetail()->{"ICD"} }}" placeholder="ICD">
|
|
|
|
|
|
+ <input type="text" class="form-control form-control-sm" name="ICD" value="{{ @$line->contentDetail()->{"ICD"} }}" placeholder="ICD">
|
|
</div>
|
|
</div>
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
<input type="text" class="form-control form-control-sm" name="contentText" value="{{$line->content_text}}" placeholder="Title">
|
|
<input type="text" class="form-control form-control-sm" name="contentText" value="{{$line->content_text}}" placeholder="Title">
|
|
@@ -73,18 +73,18 @@
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
<select name="Chronic or Acute" class="form-control form-control-sm pl-1">
|
|
<select name="Chronic or Acute" class="form-control form-control-sm pl-1">
|
|
<option value="">Chronic or Acute (select one)</option>
|
|
<option value="">Chronic or Acute (select one)</option>
|
|
- <option {{ $line->contentDetail()->{"Chronic or Acute"} === 'Chronic' ? 'selected' : '' }} value="Chronic">Chronic</option>
|
|
|
|
- <option {{ $line->contentDetail()->{"Chronic or Acute"} === 'Acute' ? 'selected' : '' }} value="Acute">Acute</option>
|
|
|
|
|
|
+ <option {{ @$line->contentDetail()->{"Chronic or Acute"} === 'Chronic' ? 'selected' : '' }} value="Chronic">Chronic</option>
|
|
|
|
+ <option {{ @$line->contentDetail()->{"Chronic or Acute"} === 'Acute' ? 'selected' : '' }} value="Acute">Acute</option>
|
|
</select>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <input type="text" class="form-control form-control-sm" name="Prognosis" value="{{ $line->contentDetail()->{"Prognosis"} }}" placeholder="Prognosis">
|
|
|
|
|
|
+ <input type="text" class="form-control form-control-sm" name="Prognosis" value="{{ @$line->contentDetail()->{"Prognosis"} }}" placeholder="Prognosis">
|
|
</div>
|
|
</div>
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <textarea type="text" class="form-control form-control-sm" name="Treatment Goal" placeholder="Treatment Goal">{{ $line->contentDetail()->{"Treatment Goal"} }}</textarea>
|
|
|
|
|
|
+ <textarea type="text" class="form-control form-control-sm" name="Treatment Goal" placeholder="Treatment Goal">{{ @$line->contentDetail()->{"Treatment Goal"} }}</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <textarea type="text" class="form-control form-control-sm" name="Treatment Plan" placeholder="Treatment Plan">{{ $line->contentDetail()->{"Treatment Plan"} }}</textarea>
|
|
|
|
|
|
+ <textarea type="text" class="form-control form-control-sm" name="Treatment Plan" placeholder="Treatment Plan">{{ @$line->contentDetail()->{"Treatment Plan"} }}</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex align-items-center">
|
|
<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-primary mr-2" type="button" submit>Save</button>
|