@extends('layouts.main') @push('styles') @endpush @section('content')
{{ $hospital_information->phone_number }}, {{ $hospital_information->email }},
{{ get_name($hospital_information->sub_county,'id', 'name', 'subcounties') }}, {{ get_name($hospital_information->district,'id', 'name', 'districts') }},
{{ $hospital_information->country }}.
{{ __('streamline_bills.date') }} : {{ streamline_date_time(\Carbon\Carbon::now()->toDateTimeString()) }}
| {{ __('streamline_bills.patient_name') }} | {{ __('streamline_bills.patient_number') }} | {{ __('streamline_bills.first_visit') }} | {{ __('streamline_bills.recorded_by') }} |
|---|---|---|---|
| {{ get_full_name($id, 'id', 'first_name', 'last_name', 'patients') }} | {{ get_name($id, 'id', 'number', 'patients') }}r | @php $episode_date = \Streamline\Models\PatientEpisode::where('patient_id', $id)->pluck('created_at')->first(); echo streamline_date($episode_date); @endphp | @php $recorded_by = \Streamline\Models\PatientEpisode::where('patient_id', $id)->pluck('created_by')->first(); echo get_full_name($recorded_by, 'id', 'first_name', 'last_name', 'users'); @endphp |
| {{ __('streamline_bills.no_records_found') }} |