mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
An updated set of source files and initialization was provided by streamline to address issues observed during initial testing. These files have been updated in order to generate a new set of app images.
15 lines
692 B
PHP
Executable File
15 lines
692 B
PHP
Executable File
@php
|
|
$hospital_info = \Streamline\Models\HospitalInformation::find(1);
|
|
@endphp
|
|
|
|
@if(is_null($hospital_info->pdf_print_header))
|
|
<img style="max-width: 300px; max-height: 140px;" src="{{ public_path($hospital_info->logo) }}" class="mx-auto d-block mx-3" alt="Responsive image">
|
|
<br>
|
|
<p class="h6 text-center mt-0 font-weight-bold">
|
|
{{ $hospital_info->name . ' | ' . $hospital_info->phone_number . ' | ' . $hospital_info->email . ' | ' . $hospital_info->address . ' ' . $hospital_info->country }}
|
|
</p>
|
|
@else
|
|
<img style="max-height: 150px;" src="{{ public_path($hospital_info->pdf_print_header) }}" class="mx-auto d-block mx-3" alt="Responsive image">
|
|
@endif
|
|
|
|
<hr> |