| Nomor Registrasi | : | {{ $this->checkup->queuePatient->registration_number ?? '-' }} |
| Nomor Rekam Medis | : | {{ $this->checkup->patient->medical_record_number ?? '-' }} |
| Nama | : |
|
| Alamat | : | {{ $this->checkup->patient->address ?? '-' }} |
| Jenis Kelamin | : | {{ $this->checkup->patient->gender ?? '-' }} |
| 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 ?? '-' }} |
| Jenis Pasien | : | {{ $this->checkup->patient->type ?? '-' }} |
| Tekanan Darah | : | {{ optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->tekananDarah ?? '' }} mmHG |
| Nadi | : | {{ optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->nadi->input ?? '' }} x/menit |
| Pernapasan | : | {{ optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->pernafasan ?? '' }} x/menit |
| Suhu | : | {{ optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->suhu ?? '' }} oC |
| SO2 | : | {{ optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->so ?? '' }} % |
| Detail | : | {!! optional(json_decode(optional(optional($patient_assessment)->generalCircumstances)->vital_signs))->fisikDetail ?? '' !!} |
| 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 ?? '-' !!} |
| {{ optional($this->checkup->getLab($lab))->name ?? '-' }} |
| Obat | Jumlah | Dosis | Harga | @forelse (json_decode($this->checkup->management->prescriptions) as $prescription) @if(optional($prescription)->type == 'racikan')
|---|---|---|---|
| {{$prescription->racikan}} | |||
| {{optional($this->getDrug($item->obat))->name}} | {{$item->jumlah}} | Tuslah : {{money_format_idr($item->tuslah)}} Embalase : {{money_format_idr($item->embalase)}} | {{money_format_idr($item->harga)}} |
| {{ optional($this->checkup->management->getDrug($prescription->obat))->name }} | {{ $prescription->jumlah }} | {{ $prescription->dosis }} | {{ money_format_idr(optional($this->checkup->management->getDrug($prescription->obat))->latestPrice()) }} |
| 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(optional($this->checkup->management->getConsumable($consumable->bhp))->price) ?? '-' }} | {{ $consumable->keterangan ?? '-' }} |
| Tidak diinputkan. | |||
| Tanggal Kontrol | : | {{ optional($this->checkup->management->schedule_date)->format('d/m/Y') ?? '-' }} |
| Jenis Kontrol | : | {{ $this->checkup->management->schedule_type ?? '-' }} |
| Keterangan | : | {{ $this->checkup->management->schedule_information ?? '-' }} |
| 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)
- {{ optional($this->checkup->refer->getICDX($code))->icJenisPenyakit ?? 'data bpjs ('. $code .') -' }} @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 ?? '-' }} |