|
@@ -1288,18 +1288,18 @@
|
|
|
@if($patient->memos && count($patient->memos))
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th class="px-2 text-secondary">Created</th>
|
|
|
<th class="px-2 text-secondary w-25">Category</th>
|
|
|
<th class="px-2 text-secondary w-50">Summary</th>
|
|
|
+ <th class="px-2 text-secondary">Created</th>
|
|
|
<th class="px-2 text-secondary delete-column"> </th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($patient->memos as $memo)
|
|
|
<tr>
|
|
|
- <td class="px-2">{{ friendly_date_time($memo->created_at) }}</td>
|
|
|
<td class="px-2">{{ $memo->category }}</td>
|
|
|
- <td class="px-2"><pre class="m-0">{{ $memo->content }}</pre></td>
|
|
|
+ <td class="px-2"><pre class="m-0 break-spaces">{{ $memo->content }}</pre></td>
|
|
|
+ <td class="px-2">{{ friendly_date_time($memo->created_at) }}</td>
|
|
|
<td class="px-2 text-center delete-column">
|
|
|
<div moe wide relative class="mr-2">
|
|
|
<a class="on-hover-opaque" start show title="Edit">
|
|
@@ -1317,8 +1317,8 @@
|
|
|
</select>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <textarea class="form-control form-control-sm" name="content" rows="5"
|
|
|
- placeholder="Content"><?= $memo->content ?></textarea>
|
|
|
+ <textarea class="form-control form-control-sm" name="content" rows="5"
|
|
|
+ placeholder="Content"><?= $memo->content ?></textarea>
|
|
|
</div>
|
|
|
<div class="d-flex align-items-center">
|
|
|
<button class="btn btn-sm btn-primary mr-2" type="button" submit>Save</button>
|