| Nomor Registrasi | : | {{ $this->checkup->queuePatient->registration_number ?? '-' }} |
| Nomor Rekam Medis | : | {{ $this->checkup->patient->medical_record_number ?? '-' }} |
| Nama | : | {{ $this->checkup->patient->name ?? '-' }} |
| Alamat | : | {{ $this->checkup->patient->address ?? '-' }} |
| Tanggal Periksa | : | {{ optional($this->checkup->queuePatient->date)->format('d-m-Y') ?? '-' }} |
| Tanggal Lahir / Umur | : | {{ optional($this->checkup->patient->birthday)->format('d-m-Y') ?? '-' }} / {{ $this->checkup->patient->age ?? '-' }} |
| Nomor Ponsel | : | {{ $this->checkup->patient->phone_number ?? '-' }} |
| NIK | : | {{ $this->checkup->patient->id_number ?? '-' }} |
| Tekanan Darah | : | {{ $this->checkup->physical->blood_pressure ?? '-' ?? '-' }} mmHG |
| Nadi | : | {{ $this->checkup->physical->pulse ?? '-' ?? '-' }} x/menit |
| Pernapasan | : | {{ $this->checkup->physical->respiration ?? '-' ?? '-' }} x/menit |
| Suhu | : | {{ $this->checkup->physical->temperature ?? '-' ?? '-' }} oC |
| SO2 | : | {{ $this->checkup->physical->so ?? '-' ?? '-' }} % |
| Detail | : | {!! $this->checkup->physical->physical ?? '-' ?? '-' !!} |
| {{ str_replace('-', ' ', Str::title(Str::kebab($name))) ?? '-' }} | : |
|
| Obat | Jumlah | Dosis | Harga | @forelse (json_decode($this->checkup->management->prescriptions) as $prescription)
|---|---|---|---|
| {{ optional($this->checkup->management->getDrug($prescription->obat))->name ?? '-' }} | {{ $prescription->jumlah ?? '-' }} | {{ $prescription->dosis ?? '-' }} | {{ money_format_idr(optional($this->checkup->management->getDrug($prescription->obat))->price) ?? '-' }} |
| Tidak diinputkan. | |||
| BHP | Jumlah | Harga | Keterangan | @forelse (json_decode($this->checkup->management->consumables) as $consumable)
|---|---|---|---|
| {{ $this->checkup->management->getConsumable($consumable->bhp)->name ?? '-' }} | {{ $consumable->jumlah ?? '-' }} | {{ money_format_idr($this->checkup->management->getConsumable($consumable->bhp)->price) ?? '-' }} | {{ $consumable->keterangan ?? '-' }} |
| Tidak diinputkan. | |||
| Tanggal Kontrol | : | {{ optional($this->checkup->management->schedule_date)->format('d/m/Y') ?? '-' ?? '-' }} |
| Nomor Rekam Medis | : | {{ $this->checkup->management->schedule_type ?? '-' ?? '-' }} |
| Nama Tempat | : | {{ $this->checkup->refer->name ?? '-' ?? '-' }} |
| Alamat | : | {{ $this->checkup->refer->address ?? '-' ?? '-' }} |
| Tanggal | : | {{ optional($this->checkup->refer->date)->format('d/m/Y') ?? '-' ?? '-' }} |
| Diagnosa | : |
@if($this->checkup->refer->icdx_codes != 'null')
@foreach (json_decode($this->checkup->refer->icdx_codes) as $code)
- {{ $this->checkup->refer->getICDX($code)->icJenisPenyakit ?? '-' }} @endforeach @else - @endif |
| Penanganan Awal | : |
@if($this->checkup->refer->handling != 'null')
@foreach (json_decode($this->checkup->refer->handling) as $id)
- {{ $this->checkup->refer->getService($id)->name ?? '-' }} - {{ money_format_idr($this->checkup->refer->getService($id)->rates) ?? '-' }} @endforeach @else - @endif |
| Keteragan | : | {{ $this->checkup->refer->information ?? '-' ?? '-' }} |