|
@@ -6,6 +6,11 @@
|
|
$routeName = request()->route()->getName();
|
|
$routeName = request()->route()->getName();
|
|
$isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note && !!$note->visitTemplate);
|
|
$isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note && !!$note->visitTemplate);
|
|
?>
|
|
?>
|
|
|
|
+<style media="screen">
|
|
|
|
+ .pt-name {
|
|
|
|
+ font-size: 1.5rem !important;
|
|
|
|
+ }
|
|
|
|
+</style>
|
|
@section('content')
|
|
@section('content')
|
|
<div class="container-fluid h-100">
|
|
<div class="container-fluid h-100">
|
|
<div class="main-row h-100 {{ !request()->input('popupmode') ? '' : 'px-0' }} {{$isVisitNote ? 'autohide-leftnav' : ''}}">
|
|
<div class="main-row h-100 {{ !request()->input('popupmode') ? '' : 'px-0' }} {{$isVisitNote ? 'autohide-leftnav' : ''}}">
|
|
@@ -305,7 +310,7 @@ $isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note &&
|
|
</div>
|
|
</div>
|
|
@endif
|
|
@endif
|
|
<div class="card {{$isVisitNote ? 'card m-0 border-0 rounded-0' : 'my-3'}}" id="patient-header">
|
|
<div class="card {{$isVisitNote ? 'card m-0 border-0 rounded-0' : 'my-3'}}" id="patient-header">
|
|
- <div class="card-header py-1 hide-inside-ticket-popup hide-inside-popup">
|
|
|
|
|
|
+ <div class="card-header py-1 hide-inside-ticket-popup">
|
|
<?php
|
|
<?php
|
|
$thumbnail = $patient->profile_picture_base64;
|
|
$thumbnail = $patient->profile_picture_base64;
|
|
$initials = !$thumbnail ? substr($patient->name_first, 0, 1) . substr($patient->name_last, 0, 1) : '';
|
|
$initials = !$thumbnail ? substr($patient->name_first, 0, 1) . substr($patient->name_last, 0, 1) : '';
|
|
@@ -350,8 +355,8 @@ $isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note &&
|
|
</div>
|
|
</div>
|
|
</div>--}}
|
|
</div>--}}
|
|
<section>
|
|
<section>
|
|
- <div class=hbox>
|
|
|
|
- <h4>{{$patientName}}</h4>
|
|
|
|
|
|
+ <div class="hbox">
|
|
|
|
+ <h4 class="pt-name">{{$patientName}}</h4>
|
|
<div class="screen-only mr-1 patient-presence-indicator thumbnail {{$online}}"
|
|
<div class="screen-only mr-1 patient-presence-indicator thumbnail {{$online}}"
|
|
data-patient-uid="{{$patient->uid}}"
|
|
data-patient-uid="{{$patient->uid}}"
|
|
style="background-image:<?=$thumbnail?>"><?=$initials?></div>
|
|
style="background-image:<?=$thumbnail?>"><?=$initials?></div>
|