|
|
| Rekam Medis | : |
{{ optional($this->patient_lab->patient)->medical_record_number ?? '-' }} |
| Nama | : |
{{ optional($this->patient_lab->patient)->name ?? '-' }}
|
| Surel | : |
{{ optional($this->patient_lab->patient)->email ?? '-' }} |
| Tanggal Lahir | : |
{{ optional($this->patient_lab->patient->birthday)->format('d/m/Y') ?? '-' }} ({{ optional($this->patient_lab->patient)->age ?? '-' }}) |
| Nomor Registrasi | : |
{{ $this->patient_lab->queueLab->registration_number ?? '-' }} |
|
Collection :
{{ $this->patient_lab->collection_time->format('d/m/Y H:i:s') ?? '-' }}
Recieve Sample :
{{ $this->patient_lab->recieve_time->format('d/m/Y H:i:s') ?? '-' }}
Analisis :
{{ $this->patient_lab->analisis_time->format('d/m/Y H:i:s') ?? '-' }}
Input Hasil :
{{ $this->patient_lab->result_time->format('d/m/Y H:i:s') ?? '-' }}
Validasi Hasil :
{{ $this->patient_lab->validation_time->format('d/m/Y H:i:s') ?? '-' }}
Recieve Hasil :
{{ $this->patient_lab->take_time->format('d/m/Y H:i:s') ?? '-' }}
|
|
@can('laboratorium.penyerahan-hasil.create')
@if (!$this->otomatis)
@endif
@if(
$this->patient_lab->patient->email!= null ||
$this->patient_lab->patient->email != '' ||
$this->patient_lab->queueLab->doctor->email!= null ||
$this->patient_lab->queueLab->doctor->email != '' ||
$this->patient_lab->patient->company->email!= null ||
$this->patient_lab->patient->company->email != ''
)
Kirim Hasil ke Surel {{ $this->patient_lab->queueLab->taker ?? '' }}
@endif
@endcan
|