|
@@ -1,19 +1,22 @@
|
|
|
|
+@extends ('layouts/template')
|
|
|
|
+
|
|
|
|
+@section('content')
|
|
<div class="p-3 mcp-theme-1">
|
|
<div class="p-3 mcp-theme-1">
|
|
- <div class="card">
|
|
|
|
|
|
+ <div class="card border-top-0">
|
|
|
|
|
|
- <div class="card-header px-3 py-2 d-flex align-items-center border-bottom-0">
|
|
|
|
|
|
+ <div class="card-header px-3 py-2 border-bottom-0 hide-inside-popup">
|
|
<strong class="mr-4">
|
|
<strong class="mr-4">
|
|
- <i class="fas fa-user-injured"></i>
|
|
|
|
|
|
+ <i class="fas fa-user"></i>
|
|
New Patients Awaiting Visit
|
|
New Patients Awaiting Visit
|
|
</strong>
|
|
</strong>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <div class="card-body p-0 border-top-0 pb-0">
|
|
|
|
|
|
+ <div class="card-body p-0 pb-0">
|
|
<table class="table table-sm table-striped mb-0">
|
|
<table class="table table-sm table-striped mb-0">
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
- <th class="border-bottom-0">Chart #</th>
|
|
|
|
- <th class="border-bottom-0">Name (F.I. LAST)</th>
|
|
|
|
|
|
+ <th class="border-bottom-0"> #</th>
|
|
|
|
+ <th class="border-bottom-0">Name</th>
|
|
<th class="border-bottom-0">DOB</th>
|
|
<th class="border-bottom-0">DOB</th>
|
|
<th class="border-bottom-0">Gender</th>
|
|
<th class="border-bottom-0">Gender</th>
|
|
<th class="border-bottom-0">BMI</th>
|
|
<th class="border-bottom-0">BMI</th>
|
|
@@ -23,8 +26,8 @@
|
|
<th class="border-bottom-0">Status</th>
|
|
<th class="border-bottom-0">Status</th>
|
|
<th class="border-bottom-0">CCM</th>
|
|
<th class="border-bottom-0">CCM</th>
|
|
<th class="border-bottom-0">RPM</th>
|
|
<th class="border-bottom-0">RPM</th>
|
|
- <th class="border-bottom-0">Last Weight-In</th>
|
|
|
|
- <th class="border-bottom-0">Last BP</th>
|
|
|
|
|
|
+ <th class="border-bottom-0 d-none">Last Weight-In</th>
|
|
|
|
+ <th class="border-bottom-0 d-none">Last BP</th>
|
|
<th class="border-bottom-0">Assigned On</th>
|
|
<th class="border-bottom-0">Assigned On</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
@@ -42,30 +45,30 @@
|
|
<td class="border-bottom-0">{{$row->usual_bmi}}</td>
|
|
<td class="border-bottom-0">{{$row->usual_bmi}}</td>
|
|
<td class="border-bottom-0">
|
|
<td class="border-bottom-0">
|
|
<?php $coverageStatus = $row->getPrimaryCoverageStatus(); ?>
|
|
<?php $coverageStatus = $row->getPrimaryCoverageStatus(); ?>
|
|
|
|
+ <div class="text-nowrap">
|
|
@if($coverageStatus === 'YES')
|
|
@if($coverageStatus === 'YES')
|
|
- <div class="text-nowrap">Covered <i class="fa fa-check-circle text-success"></i>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <i class="fa fa-check-circle text-success" data-toggle="tooltip" data-placement="bottom" title="Covered"></i>
|
|
@elseif($coverageStatus === 'NO')
|
|
@elseif($coverageStatus === 'NO')
|
|
- <div class="text-nowrap">Not Covered <i class="fa fa-times text-danger"></i></div>
|
|
|
|
|
|
+ <i class="fa fa-times text-danger" data-toggle="tooltip" data-placement="bottom" title="Not Covered"></i>
|
|
@else
|
|
@else
|
|
- <div class="text-nowrap">Unknown <i
|
|
|
|
- class="fa fa-exclamation-triangle text-warning-mellow"></i></div>
|
|
|
|
|
|
+ <i class="fa fa-exclamation-triangle text-warning-mellow" data-toggle="tooltip" data-placement="bottom" title="Unknown"></i>
|
|
@endif
|
|
@endif
|
|
<?php $coverage = $row->getPrimaryCoverage(); ?>
|
|
<?php $coverage = $row->getPrimaryCoverage(); ?>
|
|
@if($coverage)
|
|
@if($coverage)
|
|
- {{$coverage->toString()}}
|
|
|
|
|
|
+ {{ucwords(strtolower($coverage->toString()))}}
|
|
@endif
|
|
@endif
|
|
|
|
+ </div>
|
|
</td>
|
|
</td>
|
|
<td class="border-bottom-0">{{$row->lastMcpAppointment() ? $row->lastMcpAppointment()->start_date : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->lastMcpAppointment() ? $row->lastMcpAppointment()->start_date : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->nextMcpAppointment() ? $row->nextMcpAppointment()->start_date : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->nextMcpAppointment() ? $row->nextMcpAppointment()->start_date : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->nextMcpAppointment() ? $row->nextMcpAppointment()->status : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->nextMcpAppointment() ? $row->nextMcpAppointment()->status : '-'}}</td>
|
|
<td class="border-bottom-0">{{$row->is_enrolled_in_cm ? 'Yes' : 'No'}}</td>
|
|
<td class="border-bottom-0">{{$row->is_enrolled_in_cm ? 'Yes' : 'No'}}</td>
|
|
<td class="border-bottom-0">{{$row->is_enrolled_in_rm ? 'Yes' : 'No'}}</td>
|
|
<td class="border-bottom-0">{{$row->is_enrolled_in_rm ? 'Yes' : 'No'}}</td>
|
|
- <td class="border-bottom-0">
|
|
|
|
|
|
+ <td class="border-bottom-0 d-none">
|
|
<?php $m = $row->lastMeasurementOfType('Wt. (lbs.)'); ?>
|
|
<?php $m = $row->lastMeasurementOfType('Wt. (lbs.)'); ?>
|
|
{{$m && $m->value ? round($m->value, 2) : '-'}}
|
|
{{$m && $m->value ? round($m->value, 2) : '-'}}
|
|
</td>
|
|
</td>
|
|
- <td class="border-bottom-0">
|
|
|
|
|
|
+ <td class="border-bottom-0 d-none">
|
|
<?php $m = $row->lastMeasurementOfType('BP'); ?>
|
|
<?php $m = $row->lastMeasurementOfType('BP'); ?>
|
|
{{$m && $m->value ? $m->value : '-'}}
|
|
{{$m && $m->value ? $m->value : '-'}}
|
|
</td>
|
|
</td>
|
|
@@ -77,3 +80,4 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+@endsection
|