|
@@ -3,6 +3,7 @@
|
|
|
/** @var \App\Models\Client $patient */
|
|
|
?>
|
|
|
<?php
|
|
|
+$trimLayout = false;
|
|
|
$routeName = request()->route()->getName();
|
|
|
$isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note && !!$note->visitTemplate);
|
|
|
?>
|
|
@@ -275,7 +276,7 @@ $isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note &&
|
|
|
</div>
|
|
|
</nav>
|
|
|
@endif
|
|
|
- <main role="main" class="w-100 {{$isVisitNote ? 'p-0' : ''}}">
|
|
|
+ <main role="main" class="w-100 {{$trimLayout || $isVisitNote ? 'p-0' : ''}}">
|
|
|
@if($pro->is_enrolled_as_mcp && !$patient->mcp)
|
|
|
<div class="alert alert-info bg-white mt-3 mcp-theme-1 p-3 hide-inside-ticket-popup">
|
|
|
<div class="font-size-16">
|
|
@@ -317,7 +318,7 @@ $isVisitNote = ($routeName === 'patients.view.notes.view.dashboard' && @$note &&
|
|
|
</div>
|
|
|
</div>
|
|
|
@endif
|
|
|
- <div class="card {{$isVisitNote ? 'card m-0 border-0 rounded-0' : 'my-3'}}" id="patient-header">
|
|
|
+ <div class="card {{$trimLayout || $isVisitNote ? 'card m-0 border-0 rounded-0' : 'my-3'}}" id="patient-header">
|
|
|
<div id="patient-header-content">
|
|
|
<div class="card-header @if($patient->client_engagement_status_category == 'DUMMY') alert-warning @endif py-1 hide-inside-ticket-popup">
|
|
|
<?php
|