|
@@ -1,16 +1,16 @@
|
|
|
<div class="d-flex align-items-center">
|
|
|
-<?php $coverageStatus = $patient->getPrimaryCoverageStatus(); ?>
|
|
|
-@if($coverageStatus === 'YES')
|
|
|
-<i class="fa fa-check-circle text-success"></i>
|
|
|
-@elseif($coverageStatus === 'NO')
|
|
|
-<i class="fa fa-times text-danger"></i>
|
|
|
-@else
|
|
|
- <i class="fa fa-exclamation-triangle text-warning-mellow"></i>
|
|
|
-@endif
|
|
|
-<?php $coverage = $patient->getPrimaryCoverage(); ?>
|
|
|
-@if($coverage)
|
|
|
- <span class="ml-2">{{$coverage->insuranceDisplayName()}}</span>
|
|
|
-@else
|
|
|
-<small class="ml-2 text-muted">(No insurance)</small>
|
|
|
-@endif
|
|
|
+ <?php $coverageStatus = $patient->getPrimaryCoverageStatus(); ?>
|
|
|
+ @if($coverageStatus === 'YES')
|
|
|
+ <i class="fa fa-check-circle text-success"></i>
|
|
|
+ @elseif($coverageStatus === 'NO')
|
|
|
+ <i class="fa fa-times text-danger"></i>
|
|
|
+ @else
|
|
|
+ <i class="fa fa-exclamation-triangle text-warning-mellow"></i>
|
|
|
+ @endif
|
|
|
+ <?php $coverage = $patient->getPrimaryCoverage(); ?>
|
|
|
+ @if($coverage)
|
|
|
+ <span class="ml-2">{{$coverage->insuranceDisplayName()}}</span>
|
|
|
+ @else
|
|
|
+ <small class="ml-2 text-muted">(No insurance)</small>
|
|
|
+ @endif
|
|
|
</div>
|