mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
49 lines
1.8 KiB
PHP
Executable File
49 lines
1.8 KiB
PHP
Executable File
@php
|
|
$hospital_information = App::make('hospital_information');
|
|
@endphp
|
|
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<div class="white-box" style="height: 100px; padding-top: 5px; background: #d8d8d8;">
|
|
<a href="{{ $hospital_information->website }}" title="{{ $hospital_information->name }}">
|
|
<img style="margin: auto; height: 83px;" src="{{ asset($hospital_information->logo) }}" alt="Hospital Logo">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-3">
|
|
<div class="white-box" style="height: 100px; padding-top: 5px; background: #d8d8d8;">
|
|
<h4><a href="{{ url('http://www.streamlinehealth.org') }}" style="color: green;"><strong>{{ $hospital_information->app_name }}</strong></a></h4>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-3"></div>
|
|
|
|
<div class="col-sm-3">
|
|
|
|
<div class="white-box" style="height: 100px; padding-top: 5px; background: #d8d8d8;">
|
|
<h5 style="color: green">{{ ucwords(Auth::user()->first_name) . ' ' . ucwords(Auth::user()->last_name) }}</h5>
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
@if (session()->has('patient_id'))
|
|
<a style="background: yellow" class="btn btn-sm" href="/patient_episodes/">{{ __('layout.patient_home') }}</a>
|
|
@endif
|
|
</div>
|
|
<div class="col-sm-6">
|
|
@if (session()->has('patient_id'))
|
|
<a style="background: #b6895e; color: white; text-shadow: none;" class="btn btn-sm" href="/patient_finance/home">{{ __('layout.finance_home') }}</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@push('scripts')
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
@endpush
|