|
@@ -485,8 +485,14 @@ $addressParts .= implode(", ", $addressPart2);
|
|
|
</div>
|
|
|
</div>
|
|
|
@if($patient->sticky_note)
|
|
|
+ <?php
|
|
|
+ $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>
|
|
|
+ <div>
|
|
|
+ <small class="text-muted">By: {{ $patientRecentStickyNote->createdBy->pro->displayName() }} • At: {{ friendlier_date($patientRecentStickyNote->created_at) }}</small>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
@endif
|
|
|
</div>
|