|
@@ -554,7 +554,9 @@ $addressParts .= implode(", ", $addressPart2);
|
|
|
$patientRecentStickyNote = App\Models\ClientStickyNote::where('client_id', $patient->id)->orderBy('created_at', 'DESC')->limit(1)->first();
|
|
|
?>
|
|
|
<div class="">
|
|
|
- <span class="d-block text-secondary">{{$patient->sticky_note ?? '-' }}</span>
|
|
|
+ <span class="d-block text-secondary">{{ limit_string_length($patient->sticky_note ?? '-', 60) }}
|
|
|
+ @include('app.patient.partials.sticky-notes-view')
|
|
|
+ </span>
|
|
|
<div>
|
|
|
<small class="text-muted">By: {{ $patient->stickyNoteUpdatedBySession? $patient->stickyNoteUpdatedBySession->pro->displayName() : '-' }} • At: {{ friendlier_date($patient->sticky_note_updated_at) }}</small>
|
|
|
</div>
|