|
@@ -16,12 +16,12 @@
|
|
|
$hcpCompanyProPayer = $note->hcpCompanyProPayer;
|
|
|
$hcpCompanyLocation = $note->hcpCompanyLocation;
|
|
|
}
|
|
|
- $companyName = $hcpCompany ? $hcpCompany->name : 'Scholar Medical Group MD LLC';
|
|
|
- $addressLine1 = $hcpCompanyLocation ? $hcpCompanyLocation->line1 : '133 Rollins Ave';
|
|
|
- $addressLine2 = $hcpCompanyLocation ? $hcpCompanyLocation->line2 : 'Ste 3';
|
|
|
- $city = $hcpCompanyLocation ? $hcpCompanyLocation->city : 'Rockville';
|
|
|
- $state = $hcpCompanyLocation ? $hcpCompanyLocation->state : 'MD';
|
|
|
- $zip = $hcpCompanyLocation ? $hcpCompanyLocation->zip : '20852';
|
|
|
+ $companyName = $hcpCompany ? $hcpCompany->name : config('app.defaultErxCompanyName');
|
|
|
+ $addressLine1 = $hcpCompanyLocation ? $hcpCompanyLocation->line1 : config('app.defaultErxCompanyLine_1');
|
|
|
+ $addressLine2 = $hcpCompanyLocation ? $hcpCompanyLocation->line2 : config('app.defaultErxCompanyLine_2');
|
|
|
+ $city = $hcpCompanyLocation ? $hcpCompanyLocation->city : config('app.defaultErxCompanyCity');
|
|
|
+ $state = $hcpCompanyLocation ? $hcpCompanyLocation->state : config('app.defaultErxCompanyState');
|
|
|
+ $zip = $hcpCompanyLocation ? $hcpCompanyLocation->zip : config('app.defaultErxCompanyZip');
|
|
|
?>
|
|
|
<?php
|
|
|
use App\Models\Erx;
|
|
@@ -46,13 +46,13 @@
|
|
|
</div>
|
|
|
</header>
|
|
|
|
|
|
- <hr style="border-top: 2px solid #5ca4e8; border-bottom: 0; margin-top:-5px; margin-bottom:.5rem;">
|
|
|
+ <hr style="border-top: 2px solid #5ca4e8; border-bottom: 0; margin-top:5px; margin-bottom:.5rem;">
|
|
|
|
|
|
@include('app.patient.prescriptions.pdf.' . $prescription->erx_category)
|
|
|
|
|
|
<?php if($prescription->logistics_detail_json): ?>
|
|
|
<?php $logistics = json_decode($prescription->logistics_detail_json); ?>
|
|
|
- <hr style="margin: 0 0 0.5rem 0; border-top-width: 0; border-bottom-width: 1px; border-color: #bbb">
|
|
|
+ <hr style="margin: 0 0 0.5rem 0; border:0; border-color: #bbb">
|
|
|
<div style="font-size: 14px; opacity: 0.75; ">
|
|
|
<p style="margin: 0.5rem 0;"><b>{{ $logistics->facilityName }}</b></p>
|
|
|
<p style="margin: 0.5rem 0;">{{$logistics->facilityCity}} {{$logistics->facilityState}} {{$logistics->facilityZip}}</p>
|